Sunday, July 15, 2012

CSS Round corner

I was searching in the web  for to make a box with round corner. After google investigation , I came to know that , this will done using css 3. This will work fine in all browsers except IE.


Please find the following  css example:


.roundCorner  {
   border: 3px solid #FF8855;
    border-radius: 10px 10px 10px 10px;
    margin-left: 4%;
    overflow: hidden;
    padding: 0 0 18px 15px;
    width: 90%;
    height: 50%;
    background-color: FF8855;
}


No comments:

Post a Comment