Click here to Skip to main content
15,890,557 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i want to round the table's for corner rounded ??
i tried with ajax extender but i want another solution...!!!
Posted

 
Share this answer
 
it's HTML
HTML
<table>
    <tr><td>A</td><td>B</td></tr>
    <tr><td>C</td><td>D</td></tr>
</table>

its CSS
CSS
table {
    border-collapse: separate;
    border-spacing: 0;
}
table, td {
    border: 1px solid black;
    border-radius: 5px;
    -moz-border-radius: 5px;
    padding: 5px;
}
 
Share this answer
 
Comments
vihangshah 1-Mar-13 8:26am    
but this property is only in css3 in css2.1 it cant be seen....!!
Asim Mahmood 1-Mar-13 9:09am    
then you use Rounded Image for that
follow this link http://www.cssjuice.com/rounded-corners-using-css/

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900