<ul>
<li>1.サイドバー</li>
<li>2.本文</li>
</ul>
ul {
display: flex;
list-style: none;
width: 100%;
padding: 5px;
}
ul li{
background: #eee;
border: 1px solid #ccc;
display: block;
width: 100%;
height: 500px;
}
ul li:nth-child(1){
width: 200px;
}
ul li:nth-child(2){
width: calc(100% - 200px);
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.