On 7/12/05, victor NOAGBODJI <[EMAIL PROTECTED]> wrote:

> I'm trying to have something like this:
> 
> Name:                                                  Phone:                 
>                        Address:
> 

Try using a ul

#blah ul {
  list-style:none;
}
#blah li {
 display:inline;
}
<div id="blah">
<ul>
<li>Name:</li>
<li>Phone:</li>
<li>Address:</li>
</ul>
</div>

Then, just apply margins to the li for spacing (since li is a
block-level element)

HTH,

Jon
______________________________________________________________________
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