vote up 2 vote down star

I feel very noobish asking this, but I can't seem to figure it out... I have a standard <ol> that lists

  1. List item
  2. List item
  3. List item

etc.

In my CSS I would like to include the entire <li> in the background color, for instance (in my very best ASCII representation):

----------------
| 1. List item |  <----- box = solid background color
----------------

but I can only seem to get:

   -------------
1. | List item |
   -------------

Is there some property I'm missing? It's pretty annoying and I would like to fix it. Also, I am going to be coloring these different (odd/even) so just coloring the <ol> won't work, I don't think :\

Thanks for your help!

flag

72% accept rate

3 Answers

vote up 3 vote down check

What about setting this in the CSS

ol {
    list-style: inside decimal;
}

The 'inside' is the important bit.

link|flag
holy balls... i've never heard of "inside"... what is it?? ps this works pretty well... going to finish tweaking then accept – Jason Jul 15 at 1:04
ok question... it got it inside the box, but now i can't seem to get any content on the same line as the number... it's appearing on the next line... any trick for that, mr wizard? – Jason Jul 15 at 1:06
Haha, mr Wizard! Sounds like your list items are not wide enough now to accomodate the bullet point inside. Perhaps make them wider? If not, post a new question and I'll take a look. – alex Jul 15 at 1:27
my items are plenty wide... actually there's no width set so they automatically span the width of the container... it's super weird – Jason Jul 15 at 17:45
What about margins/padding? Open a new question and post your relevant HTML/CSS and I'll take a look. – alex Jul 15 at 23:01
vote up 2 vote down

I think what you're after is:

ol { list-style-position: inside; }
link|flag
that effectively does the same thing as alex's... how do i get the content on the same line as the number now? – Jason Jul 15 at 1:09
Yeah, alex's wasn't there while I was typing that... The content should be on the same line as the number unless you've got some weird padding, wrapping issues going on. Might want to post your specific html/css... – Alconja Jul 15 at 1:10
hm... may be the case. thanks. – Jason Jul 15 at 1:11
vote up 0 vote down

I don't think you're going to be able to use to get the desired effect. I would recommend, divs, dl, or even a table.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.