Archive for the ‘CSS’ Category

CSS Syntax

This item was filled under [ CSS ]

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”>

Continue reading...

Update me when site is updated