Here is the fiddle
My attempt to round the corners of the tbody element failed.
I managed to round the corners of the tr element in tbody with the following
CSS
.tr .rounded-corners { height: 225px; width: 250px; display: inline-block; padding: 10px; margin-top: 10px; box-shadow: 2px 2px 7px #888888; border-radius: 7px; cursor: pointer; cursor: hand; }
However, when I try to make a similar style with tbody , are the corners not rounded?
.tbody .rounded { background: red; border-radius: 7px; }
The background looks red.
source share