Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I try to put a border-bottom at the table-rows but they don't show up. Why is that?

http://www.mysecretathens.gr/Sera/dates.html

I think my code is pretty simple putting a class to ther tr element.

<tr class="line">

table tr.line {border-bottom: 1px solid #B4B5B0;}
share|improve this question

5 Answers

You can try this:

tr.line td{ 
border-bottom: 1px solid #B4B5B0; 
}
share|improve this answer

Do it on the table cells, it works for all browsers.

table tr.line td {border-bottom: 1px solid #B4B5B0;}

share|improve this answer

You can't put borders on tr elements. You have to put them on td

Change your style to:

tr.line td{ border-bottom: 1px solid #B4B5B0;}

share|improve this answer

Add "border-collapse: collapse" style to your table element and that should bring up the row borders

share|improve this answer

if you have a single table on the page, you may try;

td{
  border-bottom: solid 1px #B4B5B0;
}

or if you have multiple tables, use class, like;

.your_table_class td{
  border-bottom: solid 1px #B4B5B0;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.