Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > HTML > <ul> Remove Indent

Reply
Thread Tools

<ul> Remove Indent

 
 
CEFM
Guest
Posts: n/a
 
      04-25-2005
Is there a way as an html attrabute or css attrabute to remove the indent in
an unorderd list?


 
Reply With Quote
 
 
 
 
David Dorward
Guest
Posts: n/a
 
      04-25-2005
CEFM wrote:

> Is there a way as an html attrabute or css attrabute to remove the indent
> in an unorderd list?


No, but there are CSS properties: margin and padding.

--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is
 
Reply With Quote
 
 
 
 
Toby Inkster
Guest
Posts: n/a
 
      04-25-2005
David Dorward wrote:
> CEFM wrote:
>
>> Is there a way as an html attrabute or css attrabute to remove the
>> indent in an unorderd list?

>
> No, but there are CSS properties: margin and padding.


And if you set margin or padding on an unordered list, make sure you set
them both, and set both padding and margin on the list items too.

UL {
padding: something;
margin: something;
}
UL LI {
padding: something;
margin: something;
}

Otherwise you will have a bunch of problems getting it to work
cross-browser.

--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
gnu indent: how to avoid extra indent? dt C Programming 4 12-31-2006 11:31 AM
How to set the node indent property between the parent node and the leaf node viveknatani@gmail.com ASP .Net 0 02-13-2006 07:11 PM
How to remove indent of ASP.NET Server Controls MumHa ASP .Net Building Controls 2 12-07-2005 01:36 PM
How can I set the TreeView.Indent = 0? owais ASP .Net 1 01-21-2004 04:53 AM
Eclipse how to remove auto-indent.... Brad Gillespie Java 0 08-25-2003 08:32 PM



Advertisments