没有位置的内联父框中float元素的相对高度:绝对值

时间:2016-03-12 10:40:25

标签: css css-float height inline

我正在尝试使用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;
&#13;
&#13;

有没有办法以相对的方式(不使用px或em)将链接框的大小定义为父框的高度?

0 个答案:

没有答案