因此,我決定在應用程序的網頁中對這些內容進行一些更改。今天我注意到,一些已經...可怕的錯誤:奇怪的CSS問題 - 適用於Safari瀏覽器,不適用於Chrome瀏覽器
- 頁面看起來罰款Safari瀏覽器
- 在Chrome底部的頁腳看起來像一個爛攤子(沒有背景,沒有任何造型。 ..)
Safari中:
鉻:
這裏的頁腳部分(PHP/HTML):
<div id="prefooter">
<div class="container">
<div class="row">
<div class="col-xs-3" style='text-align:center;'>
<a href="<?php echo home_url('/category/plugins'); ?>"><i class="fa fa-plug"></i> Plugins</a>
</div>
<div class="col-xs-3" style='text-align:center;'>
<a href="<?php echo home_url('/category/themes'); ?>"><i class="fa fa-paint-brush"></i> Themes</a>
</div>
<div class="col-xs-3" style='text-align:center;'>
<a href="<?php echo home_url('/category/blog'); ?>"><i class="fa fa-newspaper-o"></i> Blog</a>
</div>
<div class="col-xs-3" style='text-align:center;'>
<a href="<?php echo home_url('/contact-us'); ?>"><i class="fa fa-life-ring"></i> Support</a>
</div>
</div>
</div>
</div>
這裏的CSS/LESS部分:
#prefooter {
background:#555;
height: 45px;
font-family: 'Helvetica Neue', Helvetica, arial, freesans, clean;
font-size:16px;
padding-top:10px;
a {
color: #ddd;
&:hover {
color: white;
text-decoration:none;
}
}
}
UPDATE:
夥計們,非常感謝您的幫助。但是,罪魁禍首是Cache(我認爲我已經清除了它)。進入隱身模式,奇蹟般地解決了這個問題! :-)
嗯,那太奇怪了!版本39.0.2171.71(64位)(Mac OSX) – 2014-12-05 10:41:01
是的,的確很奇怪。是否嘗試刪除緩存並重新加載頁面? – SemperMemento 2014-12-05 10:43:03
看看我的更新。 (我無法理解我總是最終被Cache所欺騙!) – 2014-12-05 10:44:02