当用户在文本框中输入错误时,我想将轮廓颜色放入文本框中。问题是 IE8 不支持该outline
属性(至少我测试没有成功)所以我border
改用:
但我想border
用于 IE8 和outline
支持它的浏览器。
.myclass
{
border: ; // IE8 should use this
outline: ; // Browser that support it must ignore the above one and get this.
}
我用 IE8 和 Chrome 进行了测试,这两个属性都在 Chrome 中应用,在 IE8 中只有边框。
例子:
.myclass
{
border: 1px solid red;
outline:#00FF00 dotted thick;
}
谢谢你。