Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Why does table border not work in vanilla?
BeeZe455
New
The border option for a table in vanilla does not seem to work on any vanilla forum I have seen. Any ideas?
0
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.