I am having the table like this and I want to apply style to each row with rounded corner.
| Month |
<
-
2021-01-07 07:21
you can write like this:
td:first-child{
-moz-border-radius:10px 0 0 10px;
-webkit-border-radius:10px 0 0 10px;
}
td:last-child{
-moz-border-radius:0 10px 10px 0;
-webkit-border-radius:0 10px 10px 0;
}
td{background:red;}
Check this http://jsfiddle.net/RNWwu/1/