w3c:http://www.w3school.com.cn/cssref/pr_border-radius.asp

定义和用法

border-radius 属性是一个简写属性,用于设置四个 border-*-radius 属性。

提示:该属性允许您为元素添加圆角边框!

属性border-radius:50%;

这时候头像的外框就有圆角效果

 

div
{
  border:2px solid;
  border-radius:50%;
}

 

圆角头像----CSS3特效

 

相关文章:

猜你喜欢
相关资源
相似解决方案