webdesign
New member
- Joined
- Jul 5, 2012
- Messages
- 229
- Points
- 0
This is a simple CSS technique of rounding the corners of the deposit insurance using some css properties. This technique will work in Firefox, Safari, Chrome and other browsers compatible CSS3. This technique will not work in Internet Explorer.
This example just above the rounded corners, left or right and below:div{
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
border: 1px solid #FF8855;
}
div{
-moz-border-radius-topleft: 10px;
-webkit-border-top-left-radius: 10px;
border: 1px solid #FF8855;
}