Jump to content
  • 0

Несколько DIV в ряд


apollox
 Share

Question

Всем ДД, есть div-контейнер, внутри несколько DIV с float: left;

DIV идут рядом в одну строку, как и нужно, но если ширина экрана становится меньше длины всех DIV, то не помещающиеся по ширине окна DIV перетекают на новую строку, чего я не хотел бы.

Нужно, чтобы DIV не перетекали, а появлялся горизонтальный scroll.

Поигрался разными свойствами, типа overflow, но увы...

Есть ли кроссбраузерный способ?

Заранее спасибо!

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Тренируюсь на таком примере, для простоты:


.nav_test {
float: left;
}

<div>
<div class="nav_test">Текст 1</div>
<div class="nav_test">Текст 2</div>
....
<div class="nav_test">Текст N</div>
</div>

Соответственно, при сужении экрана браузера, последние дивы переползают на новую строку, чего хотелось бы избежать.

Edited by apollox
Link to comment
Share on other sites

  • 0

Попробуй это:


<style>
.main {
background: lightblue;
white-space: nowrap;
overflow-x: auto;
}
.main > div {
display: inline-block;
}
</style>
<div class="main">
<div>Текст1</div>
<div>Текст2</div>
<div>Текст3</div>
<div>Текст4</div>
<div>Текст5</div>
<div>Текст6</div>
<div>Текст7</div>
<div>Текст8</div>
</div>

Результат:

forhtmlbook1.png

Edited by ils
  • Like 1
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