我正在做一个有趣的小项目,但在试图让 a<div>
中的图像漂浮在 said 的右侧时遇到了一些麻烦<div>
。问题是它似乎忽略了容器(<div>
它所在的容器)并表现得好像它是父包装器的一部分。我想要发生的是包含元素根据其中的图像调整它的高度......我猜。一直在玩它,但没有任何运气。
HTML:
<div class="maincontentwrapper">
<!--First body article on page-->
<div class="contentpane">
<img src="images/welcomethumb_small.jpg" alt="" id="infoimg" />
Filler text. This is the only thing that<br />
seems to change the height of this div's<br />
border.
</div>
<!--Second body article on page-->
<div class="contentpane">
Text goes here.
</div>
</div>
所有可见类的CSS代码:
.maincontentwrapper {margin: 10px 333px 10px 10px;}
.contentpane {border: solid 2px red;
margin-bottom: 10px;
padding: 4px 4px 4px 4px;
text-indent: 1em;}
/* Thumbnail for first article on home page.
Margins set to push image to align ignoring the container's
border width and padding width. */
#infoimg {float: right;
width: 145px;
height: 150px;
margin: -6px -6px 4px 4px;}
/* End Main Content Styles */
编辑:如果您需要网站链接以澄清问题所在,我当然可以添加它。