CSS Border Radius on HTML Table

When you want to make rounded corners on divs using CSS, all you have to do is specify a CSS border-radius style to the div, e.g.

[cc lang=”html”]

Something

[/cc]

However, if you want this to work on a table element, you need to add overflow: hidden, i.e.

[cc lang=”html”]

Something

[/cc]

Something