您的位置:首页 > Web前端 > CSS

兼容ie9以下css3,hover和圆角(htc)

2016-12-06 13:35 357 查看
htc下载地址:ie8 发现不兼容背景色切换,但是字体颜色可以切换
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>htc</title>
<style>

.main {
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
position: relative;
cursor: pointer;
z-index: 2;
width: 100px;
margin-left: 100px;
behavior: url("htc/ie-css3.htc");
background-color: #ccc;
}
.main:hover {
color: #fff;
background-color: red;

}
</style>
</head>
<body>
<div class="main">
111111111111
</div>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: