|
Posted by Jonathan N. Little on 03/21/07 12:26
Andy Dingley wrote:
> On 20 Mar, 23:12, "Jonathan N. Little" <lws4...@centralva.net> wrote:
>
>> <span>Some text</span><br /> makes no sense, use a block element that
>> make sense.
>
> It makes no sense in _this_ case. A <h3>, <h4> or somesuch is an
> obviously better choice here.
>
> However
>
> <span>Some text</span><br />
>
> makes perfect sense in many of the more general cases, such as where
> it's within a larger block of text. Your posting is potentially
> misleading, if read out of context.
>
If you use style you have more presentational flexibility:
<span class="properName">The Name</span> more info...
If you want the "properName" displayed on its own line
SPAN.properName { display: block; }
Or if you change your mind and just wish it to be a bit bigger and bold:
SPAN.properName { font-size: 1.2em; font-weight: bold; }
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
[Back to original message]
|