/  CSS – Tutorial

Introduction to CSS

 

CSS or CSS 3 tutorial provides basic and advanced concepts of CSS technology. Our CSS tutorial is provided for beginners and professionals. The major points of CSS are given below:

  • CSS stands for Cascading Style Sheet.
  • CSS is used to design HTML tags.
  • CSS is an extensively used language on the web.
  • HTML, CSS, and JavaScript are used for web designing(web pages). It helps the web designers to apply a style(CSS) on HTML tags.

 

CSS Example with CSS Editor:

 

<!DOCTYPE> 
<html> 
<head> 
<style> 
h1{ 
color:white; 
background-color:blue; 
padding:5px; 
} 
p{ 
color:blue; 
} 
</style> 
</head> 
<body> 
<h1>Write Your First CSS Example</h1> 
<h4>This is Paragraph.</h4> 
</body> 
</html>

 

OUTPUT:

 

Introduction to CSS

 

CSS 3 Tutorial:

 

In this tutorial, we will learn CSS 3 properties to design box models, apply opacity, radius, hover, etc.

 

All CSS Properties:

 

In this tutorial, you will get details of all CSS properties such as background, border, font, float, display, margin, opacity, padding, text-align, vertical-align, position, color, radius. etc.