CSS Round Corners

HTML Part

<div class="round"></div>

CSS Part

<style>
.round {
border: 1px solid #000;
width: 200px;
height: 200px;
float: left;
border-radius: 10px;
-o-border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
behavior: url(PIE.htc);
position: relative;
box-shadow: 0px 0px 10px #000;
-webkit-box-shadow: 0px 0px 10px #000;
-ms-box-shadow: 0px 0px 10px #000;
-moz-box-shadow: 0px 0px 10px #000;
-o-box-shadow: 0px 10px 0px #000;
}
</style>


DEMO Part



Comments

Popular posts from this blog

50 Beautiful Color Palettes for Your Next Web Project

Website Color Palettes: The Palettes of 50 Visually Impactful Websites to Inspire You Css Zilla