Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css

/* CSS - Cascading Style Sheet
A style sheet language wrtting styling code for html page.
It can denote any html tag
*/
address {
 /* styles goes here */
	color: black;
  	border: 1px solid black;
}

/* styles by class name  - starts with dot */
.sample-class-name{
	box-shadow: 10px 10px 20px black;
}

/* styles by id - starts with # */
#sample-id{
 	color: blue;
  	font-weight: bolder;
}


/* 
Learn CSS from https://www.w3schools.com/css/
Or click on source link for mdn reference 	
*/
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #css
ADD COMMENT
Topic
Name
7+4 =