up vote 11 down vote favorite
share [g+] share [fb]

I am trying to put a link in a <th> element and have the <a> element fill the entire space of the <th>. While I can get it to fille horizontally with width:100%, getting it to fill vertically is proving to be troublesome. height:100% seems to have no effect.

I want to do this so that the user can click anywhere in the cell to activate the link. I know I could put an onClick property on the <th> itself and handle it via javascript, but I would like to do it the "proper" css way.

Clarification: Each row of the table can have a different height because the content is dynamic, so solutions that use a fixed height for the <a> or <th> elements will not work.

Here is some sample code:

<style type="text/css">
th {
  font-size: 50%;
  width: 20em;
  line-height: 100%;
}
th a {
  display:block;
  width:100%;
  height:100%;
  background-color: #aaa;
}
th a:hover {
  background-color: #333
}
</style>
<table border=1>
  <tr>
    <th><a href="foo">Link 1</a></th>
    <td>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam dapibus tortor.</td>
  </tr>
  <tr>
    <th><a href="foo">Link 2</a></th>
    <td>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam dapibus tortor. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam dapibus tortor. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam dapibus tortor. </td>
  </tr>
</table>

And here is a page with that exact same code

As you can see if you mouseover the link, the <a> element is not filling vertically which produces an awkward look. I could fix the hover background by putting it in a "th:hover a" style, but the link would still only actually function if you clicked where the actual a tag is.

link|improve this question

feedback

8 Answers

up vote 5 down vote accepted

just change th style to this

th {
  font-size: 50%;
  width: 20em;
  height: 100%;
  line-height: 100%; 
}

cheers

link|improve this answer
just add a height with 100% ;) – gonxalo Feb 13 '09 at 18:07
be sure to test this in IE6 due to it's inability to process 100% relative values properly... – Bryan Rehbein Feb 13 '09 at 18:11
6  
Luckily this is for an internal tool where I can just punch anyone using IE6. :) – OverloadUT Feb 13 '09 at 18:12
3  
IMPORTANT: I just spent some time discovering that this answer as presented actually doesn't work when a proper DOCTYPE is set on the document. It only works in quirks mode. The fix is simple: The <tr> element must ALSO have height:100%. – OverloadUT Feb 13 '09 at 19:14
3  
Unfortunately, this solution (including a height on the <tr>) only works in quirks mode in IE6/7/8 and Opera, and doesn't work at all in Safari (and Chrome). – mercator Feb 20 '09 at 11:22
show 1 more comment
feedback

As @Hober says, you need to give the <th> a height. You could also use height: 100% there.

If you know the dimensions of your <th>, which it looks like you probably won't in this case (since they're on the side), I've had luck adding a padding to push the <a> out to the edges (past any padding from the <th> itself), and then bringing it back in with a corresponding negative margin. Like this:

th a{
  padding: 10px 0;
  margin: -10px 0;
}
link|improve this answer
worked for me, thanks! – flashparry Dec 10 '09 at 21:04
feedback

In order to do this, you can set the HEIGHT of your "a" element in pixels instead of percentage.

If you specify a percentage, 100% will end up being the height of the TEXT itself.

A pixel height will give you a static height, and will work for this situation.

td a {height: 100px;}
link|improve this answer
Unfortunately the height of each table row will vary based on the content, and I do not want each row to be at a fixed height. – OverloadUT Feb 13 '09 at 18:04
feedback

You need to give the <th> a height, so that your style block will end up something like

th {
  font-size: 50%;
  width: 20em;
  height: 8ex;
  line-height: 100%;
}

Edit: Actually, for height you should probably use a vertical measure like "ex", instead of a horizontal measure of "em". Example changed to reflect that.

link|improve this answer
The problem is that the height of each row in the table needs to be dynamic. And even if you do set the height, the content is going to resize based on the width of the browser so you can't depend on it being an exact height. – OverloadUT Feb 13 '09 at 18:02
feedback

You could do this with javascript (see below).

<style type="text/css">
th {
font-size: 50%;
width: 20em;
background-color: #aaa;

}
.off {
background-color: #aaa;
}
.on {
background-color: #333
}


<th onmouseover="this.className='on'" onmouseout="this.className='off'">><a href="foo">Link 1</a></th>
link|improve this answer
feedback

The th element needs to have a height assigned to it. Giving it a height of 100% should cause the element to expand to the height of its container (i.e. the height of the row). This may not work properly in IE 6, you may try adding _height: 1% to address IE6 - I don't have IE6 to test this with, but I tested in Firefox and it appears to be doing what you want.

th {
  height: 100%;
}
link|improve this answer
feedback

The closest i got was this...

th {
  float: left;
  overflow: hidden;
  font-size: 50%;
  width: 20em;
  margin: auto;
}
th a {
  display: table; /* or block, up to you */
  margin: none;
  width:100%;
  height: 1px;
  background-color: #aaa;
  padding: 20%;
}

But it makes all your rows the same height. Maybe someone else can fix that if it's a problem.

link|improve this answer
feedback

Since the posted solution didn't work for Chrome, I thought I would post a solution that does work for Chrome (it is from: http://apptools.com/examples/tdcolor.php)

Here's the css (call it test.css):

table.navbar {
   border-collapse: collapse;
}
table.navbar td {
   border: 1px solid #ccc;
}
table.navbar td a{
   display: block;
   width: 9em;
   padding: 3px;
   text-decoration: none;
}
table.navbar td a:link, table.navbar td a:visited {
   color: #000;
   background-color: #fff;
}
table.navbar td a:hover, table.navbar td a:active {
   color: #fff;
   background-color: #666;
}

And a sample html file (remember to change the path to the test.css file):

<html>
<head>
<link rel='stylesheet' href='CHANGE PATH TO YOUR test.css' type='text/css' media='all' />
</head>
<body>
<p><strong>Example:</strong></p>

<table border=0 cellspacing=0 cellpadding=0>
<tr>
<td><table border=0 cellspacing=0 cellpadding=0 class=navbar>
<tr>
<td class=navbar><a href="javascript:void(0);">First that is very, very, long to make sure that everything is working correctly <b 

style="color:black;background-color:#a0ffff">Link</b></a></td>
</tr>
<tr>
<td class=navbar><a href="javascript:void(0);">Another <b style="color:black;background-color:#a0ffff">Link</b></a> </td>
</tr>
<tr>
<td class=navbar><a href="javascript:void(0);">A Third <b style="color:black;background-color:#a0ffff">Link</b></a> </td>

</tr>
</table></td>
<td valign=top class=othercontent><p>Other content goes here.</p></td>
</tr>
</table>

</body>
</html>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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