我为我的Wordpress website
创建了mobile version
网站。我创造了 m.mysite.com。当我看到 m.mysite.com 时,手机号码显示我给的颜色(#000)。但在移动设备中,它的节目总是White Color
.
代码是,
<div class="header_number">
281-407-6199
</div>
CSS 是,
.header_number{
background: url(images/bg_3.png);
background-color:#919191;
text-align: center;
font-family:Verdana;
font-size:26px;
color:#813010 !important;
padding-top: 4px;
padding-bottom: 23px;
}
header_number a{
color:#813010 !important;
}
我也需要在移动设备中将其设置为相同的颜色。怎么办?
只需更新您的样式即可。
.header_number a{...}
将 DOT 添加到类名。
更改
header_number a{
自
.header_number a{
您在其中缺少 DOT(.)。