height: 100px;
で除算し、その中にリンクが含まれている場合 - 値をハードコーディングすることなく、リンクの高さを記入できますか?リンクの高さを親の100%に設定
<div><a href="#">hello</a></div>
div {
height: 100px;
width: 100px;
background: red;
}
a {
background: green;
height: 100%; /* This does not work. Is it possible to set this height to 100% of container? */
}
フィドル:http://jsfiddle.net/nPL65/
div全体を塗りたい場合は、 'min-height:100%'に変更してください –