Tips for using CSS floats

php中世界最好的语言
Release: 2018-06-13 14:31:12
Original
1297 people have browsed it

This time I will bring you tips on using CSS floats, and what are the precautions for using CSS floats. The following is a practical case, let’s take a look.

Floats have the following properties:

  1. Uncoverable text

  2. The floating element is not followed by a block-level element, and the following elements will be side by side with it (unless the width of the element is set, and it will wrap when the screen does not fit)

  3. The floating element If the previous element has no float, the float will only float in the current row; when the float encounters the float, they will be sorted in one row unless there is no position anymore

  4. When the element sets the positioning value to absolute, When fixed, floating will be ignored

  5. float causes the height of the parent element to collapse

  6. ##The floating element will be affected by the margin-top of the subsequent element

The text that cannot be covered


item1

item2

Copy after login

You can see that item2 Except for the text, all other contents of p are invisible because it goes below item1. Why isn't the text covered by floating elements? Because the essence of floating is to realize text wrapping.

It can also be concluded from the above: the block-level element behind the floating element will occupy the position of the floating element, and the floating element is always on top of the standard flow element.

The floating element is not followed by a block-level element, and the following elements will be side by side with it (unless the width of the element is set, and the line will not wrap when the screen does not fit)


item1

item2

Copy after login

If there is no float on the previous element of the floated element, the float will only float in the current row; when the float encounters the float, they will be sorted in one row unless there is no position anymore


item1

item2

item3

Copy after login

 

item1

item2

item3

item4

Copy after login

You can set the width as a percentage to achieve adaptive

 p{
           width:25%;
           height:100px;
           float: left;
       }
Copy after login

When the element is set to position When the value is absolute or fixed, floating will be ignored


 

浮动遇上定位

Copy after login

Inline elements use floating to generate a block box, so it can use width, height, margin, padding and other attributes

 
item1

item2

Copy after login

float causes the height of the parent element to collapse

on the web page In design, a very common situation is to give the content a p as a wrapping container, and this wrapping container does not set a height, but allows the content inside to expand the height of the wrapping container. If you don't set float for the child element, there will be no problem. Once you set float for the child element, the parent element will not be able to adapt to the height of the float element. The height of the parent element will be 0, so the background color and other things will not work. Cannot be displayed. The reason is:

Because the p height is not set in advance, the p height is determined by the height of the child elements it contains. Floats are out of the document flow, so the height of child elements is not calculated. At this time, in p, it is equivalent to the height of the sub-element in p being 0, so the height collapse of the parent element occurs.

   
   

       

   

Copy after login

Solution,

1. Add "overflow:hidden" to the parent element

Of course Can be "overflow:auto". But in order to be compatible with IE, it is best to use overflow:hidden.

.box{
  overflow:hidden;
}
Copy after login
So why does "overflow:hidden" solve this problem?

是因为“overflow:hidden”会触发BFC,BFC反过来决定了"height:auto"是如何计算的

,即计算BFC的高度时,浮动元素也参与计算,因此此时父元素会自适应浮动元素的高度。

所以呢,也可以设置"display:inline-block"、"position:absolute"、"float:left"来解决父元素高度坍塌的问题。因为凡是能创建一个BFC,就能达到包裹浮动子元素的效果。因此网上都说成“BFC能包裹浮动元素”.

2.在父元素内容的后面或者前面增加伪元素+清除浮动

可以给父元素的内容添加一个伪元素,可以用::before或者::after,然后内容为空,这样就不会占据位置,最后为伪元素加上“clear:both"来清除浮动。

 

    

Copy after login

为什么这样可以呢?

弄清原因需要知道两点:一是伪元素的实际作用,二是css的清除浮动(clear)只能影响使用清除的元素本身,不能影响其他元素,并且清除浮动可以理解为打破横向排列。

首先需要搞清除::after和::before起的作用,它们不是在一个元素的后面或者前面插入一个伪元素,而是会在元素内容后面或者前面插入一个伪元素(是在元素里面),之前我一直以为:before和:after伪元素 插入的内容会被注入到目标元素的前或后注入,其实注入的内容将是有关联的目标元素的子元素,但它会被置于这个元素的任何内容的“前”或“后”。我们来举个例子,可以看到.box的高度为300px,说明两个伪元素已经插入到.box内容里了。


    

Copy after login

综上,所以我们常用下列方式来清除浮动

.box::after{
  content:'';
  display:block;
  clear:both;
}
或者
.box::before{
  content:'';
  display:block;
  clear:both;
}
或者
.box::before,.box::after{
  content:'';
  display:block;
  clear:both;
}
//::before和::after必须配合content属性来使用,content用来定义插入的内容,content必须有值,至少是空。默认情况下,伪类元素的display是默认值inline,可以通过设置display:block来改变其显示。
Copy after login

在父元素的内容前后插入一个伪元素,content为空可以保证不占据位置(高度为0)。"clear:both"可以清除父元素左右的浮动,导致.box::before和.box::after遇到浮动元素会换行,从而会撑开高度,父元素会自适应这个高度从而不会出现高度坍陷。

其他解决高度坍塌的方法都是基于这两个思想的,一个是触发BFC,一个是添加元素+清除浮动(clear)。

浮动元素会被后一个元素的margin-top影响


p1

p2

Copy after login

可以看到第一个p也跟着下来了,解决办法是给后一个元素设置clear,此时后一个元素的margin-top将无效


p1

p2

Copy after login

相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!

推荐阅读:

CSS层叠机制使用详解

CSS实战项目中书写规范与顺序

The above is the detailed content of Tips for using CSS floats. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!