在我的PHP页面中,我将CSS应用到了<div>
。CSS在Chrome中运行得很好,但是当我在Firefox中运行代码时,它并没有被应用。
.due-money {
background-color: #09C;
color: white;
width: 20px;
border-radius: 8px;
text-align: center;
padding: 1px 2px;
margin-left: 10px;
}
<div class="due-money">
<?=$al_data7['data'][$j]['money']?>
</div>
火狐
铬
最佳答案
不同的浏览器使用不同的CSS核心,并有不同的解释(要独特,这只是标准的螺丝钉),所以你必须考虑所有的浏览器,如
.due-money
{
background-color:#09C;
color:white;
width:20px;
-moz-border-radius: 8px; /* Firefox */
-webkit-border-radius: 8px;
-khtml-border-radius: 8px;
border-radius: 8px;
text-align:center;
padding:1px 2px;
margin-left:10px;
}
所有浏览器的更多信息可以found here
关于php - CSS在Mozilla Firefox中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22904331/