我有這樣的HTML:Safari瀏覽器VS Firefox的:奇怪的UL 「填充」
<article class="images">
<ul class="cf">
<li>
<a href="#">
<img src="http://www.placehold.it/800x600" alt="" />
</a>
</li>
</ul>
</article>
而這個CSS:
* {
margin: 0;
padding: 0;
}
.images ul {
margin-left: -3%;
width: 100%;
background: red;
}
.images li {
list-style-type: none;
}
.images li img {
width: 17%;
margin-left: 3%;
margin-bottom: 3%;
float: left;
}
儘管如此,在Safari中ul
似乎有某種填充上對。
在Firefox中,ul
顯示正確。
看到它自己:http://jsfiddle.net/EdCXx/
有沒有辦法解決呢?
編輯:隨着OS X 10.8.2的Safari 6.0.2,它看起來像這樣:
似乎沒什麼問題。 Safari 5.1.7 for Windows –
@Diodeus我附上了問題的圖片,請參閱我的編輯。 – Sven
您是否嘗試過檢查[Safari開發人員工具](https://developer.apple.com/technologies/safari/developer-tools.html)中的元素以查看正在應用哪些屬性? – pwdst