The <span></span> tag pair is an inline tag rather than a block-level element. This tag pair essentially enables you to create your own physical markup tags. Because there’s no standard HTML tag for "very small red text on a yellow background," you can create your own class:[see what I mean? fugly!]
.fugly {
font-size: 7pt;
color: #F00;
background-color: #FCFF00;
}
With the style defined, you can apply it to the text spanned with the appropriate tag:
<p>This is <span class="fugly">horrible-looking</span> text!</p>
04/04 · 05/04 · 06/04 · 07/04 · 08/04 · 09/04 · 10/04 · 11/04 · 12/04 · 01/05 · 02/05 · 03/05 · 04/05 · 05/05 · 06/05 · 07/05 · 08/05 · 09/05 · 10/05 · 11/05 · 12/05 · 01/06 · 02/06 · 03/06 · 04/06 · 05/06 · 06/06 · 07/06 · 08/06 · 09/06 · 10/06 · 11/06 · 12/06 · ??? |
|