我有一个在 FF12 中正确显示的 CSS 文件,但在 Safari 和 Chrome 中是不同的。
如果图像未加载,请在http://beattrack.net/test.php查看现场演示
这是它在 FF 中应该和看起来的样子:
以下是 Safari 和 Chrome 中发生的情况:
这是相关的CSS和HTML:
<style type="text/css">
#topbar p.infotext {
float: left;
padding-left: 20px;
padding-right: 20px;
margin-left: 15px;
color: #D8DFEA;
}
#topbar a.name, #topbar a.home {
font-weight: bold;
margin-top: 4px;
line-height: 32px;
font-size: 13px;
text-align: right;
color: #D8DFEA;
padding-left: 12px;
float: right;
text-decoration: none;
padding-right: 0px;
}
.divider {
margin-top: 7px;
line-height: 19px;
border-right: 1px solid #5CCD3E;
float: right;
}
</style>
<html>
<div id="topbar">
<a class="home" href="#">Home <span class="divider"> </span></a>
<a class="name" href="#"><?php echo $first_name . " " . $last_name . " ";?>
<span class="divider"> </span>
</a>
</div>
</html>