好的,所以我正在尝试设置一个网页,其中一个 div 包装了另外两个 div,并且包装器 div 有背景,另外两个是透明的。这怎么行不通?
这是CSS:
.posttext{
float: left;
width: 70%;
text-align: left;
padding: 5px;
background-color: transparent !important;
}
.postavi{
float: left;
width: 100px;
height: 100%;
text-align: left;
background-color: transparent !important;
padding: 5px;
}
.postwrapper{
background-image:url('images/post_bg.png');
background-position:left top;
background-repeat:repeat-y;
}
这是HTML:
<div class="postwrapper">
<div class="postavi"><img src="http://prime.programming-designs.com/test_forum/images/avatars/hacker.png" alt="hacker"/></div><div class="posttext"><p style="color: #ff0066">You will have bad luck today.</p>lol</div>
</div>
编辑:应要求,这里是网站的链接:http ://prime.programming-designs.com/test_forum/viewthread.php?thread=33