Jump to content
  • 0

Почему свойство float убирает background?


Grani
 Share

Question

<ol class="app">
  <li><span>доставка от 2 дней</span></li>
  <li><span>скорость производства 600 м2/сутки</span></li>
  <li><span>гарантия от 5 лет</span></li>
</ol>
ol{
	background: #7A7A7A;
}
ol.app li{
	width: 100%;
	float: left;
}

https://jsfiddle.net/m1Lkwzuv/1/

Почему со стилем "float", свойство "background" не работает? если закомментировать "float", то заработает.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0
13 часов назад, Grani сказал:

Почему со стилем "float", свойство "background" не работает?

Потому что при float элементы выпадают из потока документа, и если у вас в родительском элементе содержаться только float элементы, то он "схлопывается" по высоте, т.к. считает что у него нет дочерних элементов.

Вам поможет либо 

ol{
  background: #7A7A7A;
  overflow: hidden;
}

либо

ol:after{
  display: block;
  content: "";
  clear: both;
}

подробнее например тут http://www.css-tricks.ru/articles/css/all-about-floats

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