Why does table border not work in vanilla?
The border option for a table in vanilla does not seem to work on any vanilla forum I have seen. Any ideas?
0
The border option for a table in vanilla does not seem to work on any vanilla forum I have seen. Any ideas?
Comments
It does work, just it is overruled by styling.
border="1"
is actually outputted.grep is your friend.
Is this in the yui stuff? As a workaround I have done the below to my template:
div.Comment .Message td {
border-collapse: separate;
border: 1px solid black;
padding:15px;
}
border attribute and any attribute other then style involved in styling is pretty redundant these days
Yo can do any border you like
style="border:1px solid red;"
grep is your friend.