这篇文章主要介绍了关于如何使用css实现一个圆形头像框,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
直接设置img为圆形,这种情况下如果图片不是正方形,图片会被拉伸
<img class="circleImg" src="../img/photo/img.jpg" />
相应的css为
.circleImg{ border-radius: 30px; width:60px; height:60px; }
boder-radius为图片宽度的一半
通过背景图设置
<p class="bgImg"></p>
相应的css为
.bgImg{ border-radius: 30px; width:60px; height:60px; background: url("../img/photo/img.jpg") no-repeat center; background-size:60px; }
拖图片不是方形,则按照宽度等比例显示,则background-size设置为图片宽度,高度为auto,若需要按照高度等比例显示,则background-size:auto 60px;
显示效果为
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!
相关推荐:
Atas ialah kandungan terperinci 如何使用css实现一个圆形头像框. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!