How to convert row elements to block elements and block elements to row elements in css

青灯夜游
Release: 2023-01-11 09:19:24
Original
14130 people have browsed it

In css, you can use the display attribute to convert between row elements and block elements: add the "display:block;" style to the row element to convert it into a block element; add "display:inline;" to the block element. ” style can convert it into a row element.

How to convert row elements to block elements and block elements to row elements in css

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

In HTML, tags are divided into two levels:

  • Inline elements: side by side with other inline elements; width and height cannot be set, the default width is the width of the text .

  • Block-level elements: occupy one line and cannot be juxtaposed with any other elements; can accept width and height. If the width is not set, the width will default to 100% of the parent.

##Example: The

tag is a block-level element, and thetag is an inline element.

     

测试代码 p标签

测试代码 p标签

测试代码 span标签 测试代码 span标签
Copy after login

How to convert row elements to block elements and block elements to row elements in css

But the element type is converted. We can use the css display attribute to realize the mutual conversion between row elements and block elements.

The display attribute specifies the type of box the element should generate.

  • block This element will be displayed as a block-level element with line breaks before and after this element.

  • inline Default. This element will be displayed as an inline (inline) element with no line breaks before or after the element.

Convert line elements to block elements

Set

display:block;in the inline elements to make the inline elements The element becomes a block-level element.

Convert block elements to line elements

Set

display:inline;in block-level elements to make block-level elements inline element.

Example:

     

测试代码 p标签

测试代码 p标签

测试代码 span标签 测试代码 span标签
Copy after login

How to convert row elements to block elements and block elements to row elements in css

Recommended tutorial: "

CSS Video Tutorial"

The above is the detailed content of How to convert row elements to block elements and block elements to row elements in css. 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
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!