最後,我想讓firefox和chrome以同樣的方式顯示。在鉻我注意到,float: left
打破了網站,但在FF工程。但是,如果我將float:none
Chrome完美顯示,但它在FF上被打破。@ -moz-文檔不起作用
我試過@-moz-document url-prefix() {.attempt{float:left}}
但似乎沒有工作。我試過@document url() {.attempt{float:left}}
但這也沒有幫助。
任何幫助將不勝感激。
<style>
@-moz-document url-prefix() {
.attempt {
float:left
}
}
.attempt {
float:none
}
</style>
<div class="attempt">someText</div>
而且It has been asked before with no answer.
回答這個問題,因爲鏈接的問題有一些細微的差別,實際上使其重現比困難得多這個。 – BoltClock