Jump to content
  • 0

counters() в Opera и Konqueror


RommeDeSerieux
 Share

Question

Firefox, Chrome и IE8 показывают это, как и хотелось бы:

1 first list, first item
2 first list, second item

1 second list, first item
2 second list, second item

А вот Opera и Konqueror делают вид, что второй <ul> на самом деле вложен в первый, будто я не поставил закрывающего тега:

1 first list, first item
2 first list, second item

2.1 second list, first item
2.2 second list, second item

Вот какой у меня код:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<meta http-equiv=Content-Type content='text/html; charset=utf-8'>
<title>lists testcase</title>

<style type='text/css'>
ol { counter-reset: list 0; list-style-type: none }
li { counter-increment: list }
li:before { content: counters(list, ".") " " }
</style>

<ol>
<li>first list, first item
<li>first list, second item
</ol>

<ol>
<li>second list, first item
<li>second list, first item
</ol>

Забавно, но если использовать counter() вместо counters(), то всё работает. Но так у меня не получится правильно оформить вложенные друг в друга списки.

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy