Skip to content

Instantly share code, notes, and snippets.

@sabrinaluo
Created December 16, 2014 07:59
Show Gist options
  • Save sabrinaluo/5a3ebb4a64d57b65e142 to your computer and use it in GitHub Desktop.
Save sabrinaluo/5a3ebb4a64d57b65e142 to your computer and use it in GitHub Desktop.
css img rounded 图片 圆形
<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