0
我剛收到這真棒幫助: Is there a way to extend background color of unordered list items to go behind bullets?更加無序列表填充/保證金的跨瀏覽器瘋狂
,然後我就是應對text-indent屬性再次排隊在此無序列表中的換行文本,但你看,它看起來像IE和FF正在處理填充不同,足以真正混亂的佈局。任何解決方案
火狐(好)
FF Good http://mbira.me/images/ff_good.jpg
IE(壞) alt text http://mbira.me/images/ie_bad.jpg
對列表中的CSS:
.registerbox ul{
}
.registerbox ul li.light{
list-style-type:disc;
list-style-position:inside;
margin:2px 0px 2px -20px;
padding:2px 30px;
background-color:#FFFFB0;
text-indent:-12px;
}
.registerbox ul li.dark{
list-style-type:disc;
list-style-position:inside;
margin:2px 0px 2px -20px;
padding:0px 30px;
text-indent:-12px;
}
這將有助於發佈一些你的html/css。另外,什麼版本的IE?你可能會發現這有助於處理IE6/7 * cringes * http://en.wikipedia.org/wiki/Internet_Explorer_box_model_bug – wsanville 2010-01-27 02:37:16
CSS發佈了這是在IE 7和8中。 – Joel 2010-01-27 02:46:54
我找不到方法(A)爲IE指定一個單獨的樣式表,並在其中設置不同的縮進或(B)不使用子彈。 – 2010-01-27 02:52:40