Skip to content

Latest commit

 

History

History
47 lines (39 loc) · 617 Bytes

README.md

File metadata and controls

47 lines (39 loc) · 617 Bytes

CSS notes

What is CSS?

????


Comments in CSS:

// single line comment
/* multi-line comment */


Syntax of CSS Rule:

important: A CSS rule looks like this:-

	  selector {
	  	property: value; 
	  	...
	  }

note: the value here is different from <element attribute= “value”> </element>