我上传的 CSS 正在使用border: thin dashed
,但 Firebug 将样式显示为border: thin solid
.
这是上传的样式
#menu a{
padding-left: 5px;
padding-right: 5px;
padding-top: 3px;
padding-bottom: 3px;
color: #FFF;
text-decoration: none;
border: thin dashed #FFF;
border-radius: 3px;
outline: none;
}
这是我在 Firebug 中看到的 CSS
#menu a {
border: thin solid #FFFFFF;
border-radius: 3px 3px 3px 3px;
color: #FFFFFF;
outline: none;
padding: 3px 5px;
text-decoration: none;
}
在本地预览(F12-Firefox 16)#menu a border
上是虚线,但从服务器加载,#menu a border
是实心的!