词条信息

admin
超级管理员
版本创建者 发短消息   
简易百科旧版 >> Div+Css画圆代码 >> 历史版本

最新历史版本 :Div+Css画圆代码 返回词条



想要使用div+css画圆很简单,看看下面代码吧:


<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> 


至于大小颜色什么的,大家就看着自己改吧。