我想要一张溢出 div 的图像,同时又不干扰文本流。
你可以在http://songbundle.org上看到它*
上图示例。目前,文本和表单向右移动并由于图像而失去居中。
我当前的代码如下:
HTML:
<div class="box">
<div id="boxarrow"></div>
<p>text goes here</p>
</div>
CSS:
.box {
margin:60px auto 0 auto;
width:240px;
border:solid 1px #7889BC;
background-color: #AEB8D7;
text-align:center;
}
#boxarrow {
background:url(image/arrow.png);
width:77px;
height:81px;
display:block;
margin-left:-60px;
float:left;
}
感谢您的帮助!