Hi now we are discussing how you will design your div rounded corner with help of CSS,For rounded corner CSS gives “moz-border-radius” (for mozilla) properties which takes radius of corner. The properties may differ according the browser.
- .user_listBox{
- -moz-border-radius: 9px 9px 9px 9px;
- background-color: #FFFFF;
- float:left;
- border: 1 solid black;
- color: black;
- font-size: 10px;
- height: 60px;
- line-height: 135%;
- margin: 1px;
- padding: 0 0 0 1px;
- position: relative;
- width: 280px;
- }
}