background-attachment: scroll;
background-color: #FFF;
background-image: url(img/sony.gif);
background-position: top left;
background-repeat: no-repeat;
/*пять строчек выше идентичны одной ниже*/
background: scroll #FFF url(img/sony.gif) top left no-repeat;
p {
margin-top: 1px;
margin-right: 5px;
margin-bottom: 10px;
margin-left: 20px;
}
p {
margin: 1px 5px 10px 20px;
}
p {
padding-top: 1px;
padding-right: 5px;
padding-bottom: 10px;
padding-left: 20px;
}
p {
padding: 1px 5px 10px 20px;
}
p {
border: 1px red solid;
}
font-family: Tahoma, Verdana;
font-style: italic;
font-variant: normal;
font-weight: bold;
font-size: 150%;
line-height: 18px;
/* идентичны строке */
font:italic normal bold 150%/18px Tahoma, Verdana;
list-style: list-style-type || list-style-position || list-style-image
ul {
list-style: none;
}
/* свойства контуров */
[ outline-color; outline-style; outline-width ]
/* ПРИМЕРЫ */
outline: 1px solid #111;
outline: 2px dotted #222;
outline: 3px dashed #333;