Last active
August 29, 2015 14:15
-
-
Save safranck/9addbba6d7352920dcba to your computer and use it in GitHub Desktop.
CSS border-radius Rounded Image
This file contains hidden or 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
<div class="gallery"> | |
<img src="http://wilt.xyz/wp-content/uploads/2015/02/suzette-WDS-e1424416736371.jpg" alt="suzette-WDS" width="799" height="799" class="alignnone size-full wp-image-37" /> | |
<img src="http://wilt.xyz/wp-content/uploads/2015/02/suzette-WDS-e1424416736371.jpg" alt="suzette-WDS" width="799" height="799" class="alignnone size-full wp-image-37" /> | |
<img src="http://wilt.xyz/wp-content/uploads/2015/02/suzette-WDS-e1424416736371.jpg" alt="suzette-WDS" width="799" height="799" class="alignnone size-full wp-image-37" /> | |
</div> |
This file contains hidden or 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
.gallery img { | |
border-radius: 100%; | |
float: left; | |
margin-right: 10px; | |
height: 175px; | |
width: 175px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment