То, как я делал макет с плавающей точкой, заключалось в том, чтобы плавать слева от первого элемента, а затем перемещать вправо второй элемент подряд.Это означает, что ваш элемент #main может быть первым в разметке.После этого вы должны дать вашему элементу #main произвольный процент ширины.Имейте в виду, что, поскольку #sidebar имеет фиксированную ширину, вам придется использовать медиазапрос, чтобы исправить его компоновку, как только #sidebar больше не помещается и поднимается до следующей строки.Это зависит от вас, как вы хотите выложить это, но в целях аргументации вы можете попытаться просто удалить поплавки в этой точке.Я предполагаю, что нет никаких других элементов выше или ниже этих двух, о которых вам придется беспокоиться.Для медиазапроса я использовал 408 пикселей для максимальной ширины, но это может отличаться на вашей веб-странице.
#main {
width: 60%;
float:left;
}
#sidebar {
width: 150px;
height: 200px;
background-color: #abc;
float:right;
}
#main p {margin-top:0;}
@media screen and (max-width:408px) {
#main {
float:none;
}
#sidebar {
float:none;
}
}
<div id="main">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</p>
</div>
<div id="sidebar"></div>