首页 > 开发 > CSS > 正文

Div+Css画圆示例代码

2024-07-11 08:28:20
字体:
来源:转载
供稿:网友

复制代码
代码如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Jxchen</title>
<style type="text/css">
.box{ border:1px solid #f60; width:100px; height:100px; margin:0 auto;
-webkit-border-radius:50px;
-moz-border-radius:50px;
-o-border-radius:50px;
border-radius:50px;
}
</style>
</head>
<body>
<div class="box">
</div>
</body>
</html>
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表