Jump to content
  • 0

Плавающие слои друг под другом


HeadInSky
 Share

Question

Столкнулся с проблемой, не могу найти решение.

Есть три слоя, располагающиеся в ряд (float: left). Ширина определена, а высота по контенту.

floating-1.jpg

При сжатии окна браузера, слой 3 не помещается в область просмотра, и должен перемещаться на строку ниже.

Но слой 1 выше остальных, и слой 3 оказывается не в начале, а справа от слоя 1, что конечно является нормальным поведением.

floating-2.jpg

Но существует ли способ расположить третий слой под первым?

Код:

<head>
<style>
.container {
float: left;
width: 100%;
background-color: gray;
}

.a {
float: left;
width: 100px;
color: #fff;
background-color: #000;
margin: 10px;
}

</style>
</head>
<body>
<div class="container">
<div class="a">
<p>1 block<br /><br />text</p>
</div>
<div class="a">
<p>2 block</p>
</div>
<div class="a">
<p>3 block</p>
</div>
</div>
</body>

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
HeadInSky, оберните первые два блока ещё одним, у которого пропишите «float: left» и «overflow: hidden».

Прошу прощения, я не до конца объяснил задачу - кол-во блоков может быть какое угодно. По сути это каталог товаров в инет-магазине.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy