Quote:
Originally Posted by DaveLessnau
To boldify (embolden?), italicize or underline words (not necessarily paragraphs), would I use these:
Code:
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
.underline {
text-decoration: underline;
}
|
This is all you need.
Code:
.underline {
text-decoration: underline;
}
Use <b>some bold text</b> and <i>some italicized text</i>. Keep the code as simple as possible and spans for bold and italics is not as simple as it can be.