My table class is .bottom and I want the bottom of the table to be a solid black line, all the way across. So I tried this:
<table style="border-bottom-color:#000000"> But that doesnt do it. So I tried this in CSS:
.bottom td {border-bottom: 2px solid black !important;} and now everything in the table has a black underline( links, td, image) and all I want is the table itself to has a solid black bottom border. Any suggestions are very much appreciated.
<table style="border-bottom: 2px solid #000000">? Keeping in mind that it's always better to have that defined in a separate stylesheet.