Home  >  Article  >  Web Front-end  >  What are the attribute values ​​of float attribute in css

What are the attribute values ​​of float attribute in css

青灯夜游
青灯夜游Original
2021-02-23 15:41:0315577browse

In CSS, the float attribute is used to define the direction in which the element floats. The attribute values ​​that can be set are: 1. "left", which defines the element to float to the left; 2. "right", which defines the element to float to the right. Float; 3. "none", which defines that the element will not float and will be displayed where it appears in the text; 4. "inherit".

What are the attribute values ​​of float attribute in css

The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.

The float attribute in CSS is a frequently used attribute. For beginners, if they do not understand the meaning and characteristics of float, it is easy to get confused and confused when using it. Here, I can't figure out the status.

float attribute

float, as the name suggests, is floating. Elements with the float attribute set will float to the left or right according to the attribute value. We call it set with the float attribute. The element is a floating element.

After an element uses the float attribute, the element can be separated from the standard flow itself and float on top of other elements, so that it no longer occupies the space originally belonging to the element. This will cause the subsequent elements to move up and merge. Takes up space that originally belonged to the element.

Attribute value

  • left: The element floats to the left.

  • right: The element floats to the right.

  • none: Default value. The element is not floated and appears where it appears in the text.

  • inherit: Specifies that the value of the float attribute should be inherited from the parent element.

【Recommended tutorial: CSS video tutorial

Example:




 
css float属性


在下面的段落中,我们添加了一个 float:right 的图片。导致图片将会浮动在段落的右边。

What are the attribute values ​​of float attribute in css 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。 这是一些文本。这是一些文本。这是一些文本。

Rendering:

What are the attribute values ​​of float attribute in css

For more programming-related knowledge, please visit: Programming Video! !

The above is the detailed content of What are the attribute values ​​of float attribute in css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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