0

so I have a page with some bulleted items but for some reason they are not coming in on IE8 as they should, can someone please steer me in the right direction?

http://careers.express-scripts.com/search?search=&category=&state=MO&csrf-token=

Thanks

4

1 回答 1

1

我没有 IE,所以无法测试,但我的直觉认为这可能与 li 上的文本缩进和填充有关。

你有:

#body_left ul li {
    font-family: Helvetica,sans-serif;
    font-size: 13px;
    list-style: disc inside none;
    padding: 5px 0 5px 33px;
    text-indent: -1em; }

但你可以尝试:

#body_left ul li {
    font-family: Helvetica,sans-serif;
    font-size: 13px;
    padding: 5px 0;
    margin-left: 33px; }
于 2013-07-31T15:02:40.957 回答