Created
December 16, 2014 07:59
-
-
Save sabrinaluo/5a3ebb4a64d57b65e142 to your computer and use it in GitHub Desktop.
css img rounded 图片 圆形
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
div{ | |
height:100px; | |
width:100px; /*宽高必须相等*/ | |
overflow:hidden; /*隐藏超出div的部分*/ | |
border-radius:50%;/*圆角为宽高的50%*/ | |
} | |
</style> | |
<div> | |
<img src="xx.jpg"> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment