Stretching tag to fill entire

The “a” tag is an inline level element. No inline level element may have its width set. Why? Because inline level elements are meant to represent flowing text which could in theory wrap from one line to the next. In those sorts of cases, it doesn’t make sense to supply the width of the element, because you don’t necessarily know if it’s going to wrap or not. In order to set its width, you must change its display property to block, or inline-block:

a.wide {
    display:block;
}

...

<ul id="menu">
  <li><a class="wide" href="https://stackoverflow.com/questions/3264370/javascript:;">Home</a></li>
  <li><a class="wide" href="https://stackoverflow.com/questions/3264370/javascript:;">Test</a></li>
</ul>

If memory serves, you can set the width on certain inline level elements in IE6, though. But that’s because IE6 implements CSS incorrectly and wants to confuse you.

Leave a Comment