HighDots Forums  

table row - border on the bottom

Cascading Style Sheets Layout/presentation on the WWW (comp.infosystems.www.authoring.stylesheets)


Discuss table row - border on the bottom in the Cascading Style Sheets forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
eomer
 
Posts: n/a

Default table row - border on the bottom - 01-16-2006 , 10:47 AM






I would like my table header to have a border on the bottom. What I
have written works in Mozilla (1.7.12) but not IE (6).

I have included the snippet of html and the snippets of CSS. Any
suggestions would be appreciated. Thank you.

http://www1.esc.edu/personalstu/fhartnet/books.html


<tr class="lightblue">
<th>Title</th>
<th>Author</th>
<th>Synopsis</th>
</tr>

table {border-collapse: collapse;
table-layout: auto;
width: auto;}

tr.lightblue{
background-color: #CCFFFF;
color: black;
font-weight: bold;
font-family: sans-serif, serif;
font-size: 18px;
caption-side: top;
padding: 5px;
border-bottom: 5px solid black;
}


Reply With Quote
  #2  
Old   
Els
 
Posts: n/a

Default Re: table row - border on the bottom - 01-16-2006 , 10:49 AM






eomer wrote:

Quote:
I would like my table header to have a border on the bottom. What I
have written works in Mozilla (1.7.12) but not IE (6).
[snip]
tr class="lightblue"
th>Title</th
th>Author</th
th>Synopsis</th
/tr

table {border-collapse: collapse;
table-layout: auto;
width: auto;}

tr.lightblue{
[snip]
border-bottom: 5px solid black;
}
You need to put the border on the bottom of the <th>s.
tr.lightblue th{
border-bottom:5px solid black;
}

(not because of that being the right way according to the specs, but
because IE won't do it otherwise ;-) )

--
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -


Reply With Quote
  #3  
Old   
eomer
 
Posts: n/a

Default Re: table row - border on the bottom - 01-16-2006 , 11:03 AM



Thank you so much!
I just love these differences between the browsers.


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.