我垂直有3个div。第一个应该有 100% 的宽度,第二个应该有一个宽度为 283px 的图像,第三个 div 应该有 100% 的宽度。有谁知道如何将图像 div 100% 定位在另外两个 div 的中间?
我试过这个,但不适合我
<div class="content">
<div class="first">1</div>
<div class="third">3</div>
<div class="second">2</div>
</div>
.first{
width:100%;
float:left;
background:yellow;
}
.third{
width:100%
float:right;
background:pink;
}
.second{
width:283px;
overflow:hidden;
background:blue;
}enter code here