Why aren't my ul and ol lists showing up properly in IE7?

Something seems to disrupt the display of lists ( uland ol) in IE7. They work fine in IE8, FF, Safari, etc., but not IE7 and IE6.

I just want them to display normally: ullists should display markers, and ol- show numbers.

I narrowed it down to the first 1000 lines of code in styles_layout.css...;)

Actually, I think this has something to do with the following styles:

* { margin: 0; } 

html, body { height: 100%; } 

.wrapper 
{ 
  min-height: 100%; 
  height: auto !important; 
  height: 100%; 
  margin: 0 auto -39px; 
} 

Look here: http://www.olvarwood.com.au/olvarwoodonline/mod/forum/discuss.php?d=2 , log in asguest

+3
source share
4

:

* {
    margin: 0;
}

Ol Ul IE7 IE6. , ...

+1

IE7 ul :

ul {
  margin-left: 40px
}

, :

ul {
  padding-left: 40px
}

: https://developer.mozilla.org/en/Consistent_List_Indentation " " , .

+10

, ul/li .

+3

css, , , .

, ul, .

.classname ul { list-style disc inside }

, .

0

Source: https://habr.com/ru/post/1707913/


All Articles