Link to home
Start Free TrialLog in
Avatar of MacLean Fitzgerald
MacLean FitzgeraldFlag for United States of America

asked on

List Items: Display Inline

I have the following:

<ul>
<li>One</li>
<li>Two</li>
<li>Three</li>
</ul>

I want the three items to display inline, but retain the bullets.  Is this possible?  Besides using an image?  I would rather just use the normal <li> bullets.
ASKER CERTIFIED SOLUTION
Avatar of Gary
Gary
Flag of Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
li{
   float:left;
   margin-left:30px;
}