Perhaps someone knows the answer to this as it has me stumped.
In vB3, I added rounded corners to many tables by creating the following css class:
I can then do something like this:
Now, in vb4 I have recreated the tborder class and added the exact same "roundedcat" css class.
However, no matter what I do, tables will not display with rounded corners at the top like they do in vB3.
I've even tried doing away with tborder and adding a border manually as a test, but still no joy.
there must be something in vB4's css that stops border radiuses working in tables.
I know my class is correct as it works in divs.
Anyone know what's stopping this from working? It's bizzarre!
In vB3, I added rounded corners to many tables by creating the following css class:
Code:
.roundedcat { -moz-border-radius-topleft: 5px 5px; -moz-border-radius-topright: 5px 5px; -webkit-border-radius-topleft: 5px 5px; -webkit-border-radius-topright: 5px 5px; border-radius-topleft: 5px 5px; border-radius-topright: 5px 5px; }
Code:
<table class="tborder roundedcat"> <tr> <td class="thead roundedcat"> ...etc
However, no matter what I do, tables will not display with rounded corners at the top like they do in vB3.
I've even tried doing away with tborder and adding a border manually as a test, but still no joy.
there must be something in vB4's css that stops border radiuses working in tables.
I know my class is correct as it works in divs.
Anyone know what's stopping this from working? It's bizzarre!
Comment