我正在尝试使用float和clear将链接箭头添加到我的内联父框。父框的大小是可变的,因此可以使用文本大小/缩放进行调整。 为了更好地理解守则的基本结构:
*.wrap_content_pic_left{
/*Size */
width: 98%;
/*Position */
display: inline-block;
background: red;
}
*.wrap_content_pic_left a#link {
float: right;
clear: right;
width: 3%;
height: 100%;
background: blue;
}

<div class="wrap_content_pic_left">
<a href ="" id="link">& raquo </a>
<h3> Some Text </h3>
<h3> Some more text</h3>
</div>
&#13;
有没有办法以相对的方式(不使用px或em)将链接框的大小定义为父框的高度?