CSS3 Text Formatting

CSS3 Text Formatting

p{
 font-family:'Open Sans','Trebuchet MS','Arial','sans-serif';
 font-size:14px;
 color:#333;
 letter-spacing:1px;
 line-height:1.2;
 font-weight:normal;
 font-style:italic;
 text-transform:none;
 text-align:center;
 text-decoration:none;
 text-indent:10px;
 text-shadow:3px 3px 3px #ccc;
}
Comments are closed.