除算がheight: 100px;
あり、その中にリンクが含まれている場合、値をハードコーディングせずに、除算の高さをリンクで埋めることはできますか?
<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/