View Single Post
Old 11-07-2011, 05:38 PM   #2
Serpentine
Evangelist
Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.Serpentine ought to be getting tired of karma fortunes by now.
 
Posts: 416
Karma: 1045911
Join Date: Sep 2011
Location: Cape Town, South Africa
Device: Kindle 3
Using the i tag:
Code:
<i>word</i>
or using a span and css:
Code:
<p>some other text <span class="italic">in</span> this paragraph.</p>
with the css:
Code:
.italic {
    font-style: italic
    }
I prefer the simple tag, as it's nicer to work with distinct elements when using regex and the rest - you never know what things will look like later on.
Serpentine is offline   Reply With Quote