> From: Jeff Chastain
> 
> I have a set of HTML markup that consists of 4 span tags in a row ...
>  
>     <span id="span1">span 1</span>
>     <span id="span2">span 2</span>
>     <span id="span3">span 3</span>
>     <span id="span4">span 4</span>
>  
> In one layout, I need the four tags to be on a single line 
> next to each
> other.  In the second layout (different stylesheet), I need 
> the 4th tag to
> drop down and be on its own line.

In the second layout just add display: block for span4.

#span4 {display:block;}

-- 
Peter Williams


______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to