2014-02-28 33 views
0

以下代碼在IE 8中不起作用,除了此瀏覽器在所有瀏覽器中都可用。任何人都可以幫我解決這個問題嗎?HTML中的連字符列表在IE 8中不起作用

CSS

ul.hyphen-list { 
    list-style-type: none; 
    margin-left: 1.5em; 
    padding-left: 1em; 
    text-indent: -0.85em; 
} 

ul.hyphen-list li:before { 
    content: "- "; 
} 

HTML

<ul class="hyphen-list"> 
    <li>This is line 1<br/>part 2</li> 
    <li>This is line 2</li> 
</ul> 

回答