所有浏览器的CSS:
.bordering {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: #A3815B 0px 1px 3px;
-moz-box-shadow: #A3815B 0px 1px 3px;
box-shadow: #A3815B 0px 1px 3px;
}
用于 IE 的 CSS:
.bordering {
border: 1px solid #A3815B;
}
当从所有浏览器 css 中删除.bordering
类时,该边框IE
可以正常工作。
How to do, that box-shadow
works in FF,Opera
and others and generic border
works inIE
一次。
试过:
.bordering {
-webkit-border-radius: none;
-moz-border-radius: none;
border-radius: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
没有帮助。