我想在父 div 中制作两个相邻的 div
像这样:
<--------- 70% ----------> <-- 30% -->
|-------------------------|----------|
| | |
| | |
|-------------------------|----------|
它仅在父级具有固定高度时才有效,但我希望父级是自动的,以便内容完全适合父级。
当父级没有固定高度时:
|-------------------------|----------|
| | content |
| content |----------|
| |
|-------------------------|
CSS:
.parent {
background-color: blue;
height: auto;
}
.biginside {
background-color: pink;
height:100%;
width: 70%;
float: left;
}
.smallinside {
background-color: red;
height: 100%;
width: 30%;
float: left;
}
<div class="parent">
<div class="biginside">
<p>content</p>
<p>content</p>
</div>
<div class="smallinside">
<p>content<p>
</div>
</div>