CSS Syntax
Syntax
selector { propery: value; }
Example:
body {
font-size: 12px;
color: #333;
margin: 0;
padding: 0;
}
External style sheet
<link rel=”stylesheet” type=”text/css” href=”style.css” />
Internal style sheet
<style type=”text/css”>
selector {property: value;}
</style>
Example:
body {
margin:0;
padding:0;
background-color:#dbdbdb;
}
* {
font-family:Verdana, Arial, Helvetica, sans-serif;
}
a img {
border: 0;
}
Inline style
<tag style=”property: value”>