求用CSS3实现圆角边框的border-radius好的示例网站?
发布网友
发布时间:2022-04-06 11:12
我来回答
共2个回答
热心网友
时间:2022-04-06 12:41
//*以下是代码。。。css3兼容大部分版本。加上一个插件ie-css3.htc让ie6也可以支持哦!!!插件问我要。。。
<html>
<head><title>e</title>
<style type="text/css">
.test {
width:560px;
height:400px;
background-color: blue;
padding:10px 8px 6px;
border: 2px solid #C0C0C0;
margin-bottom:10px;
border-radius: 10px;
behavior: url(ie-css3.htc);
}
</style>
</head>
<body>
<div class="test">
这个页面内容
</div>
</body>
</html>
热心网友
时间:2022-04-06 13:59
搜:css3圆角在线生成
好多现成网站,自己进去填几个角的半径,代码都帮你生成好了