How to Make Italic Using CSS?
To make text italic in CSS use the following:
font-style:italic;
To make text italic in CSS use the following:
font-style:italic;
This little CSS code snippet allows you to automatically attach an icon to file downloads. For instance if you had a file to download a pdf it would automatically add the icon to the right of the link.
<a href="news/issue12.pdf">View Latest Issue</a>
a[href $='.pdf'] {
padding-right: 18px;
background: transparent url(icon_pdf.gif) no-repeat center right;
}
Result
Powered by WordPress | Aeros Theme | TheBuckmaker.com WordPress Themes