Home Web Front-end CSS Tutorial How block elements are converted to inline elements

How block elements are converted to inline elements

Apr 20, 2021 am 09:41 AM
block element inline elements

This article will give you a detailed introduction to the method of converting block elements and inline elements. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

How block elements are converted to inline elements

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<style>
			.div1{
				width: 200px;
				height: 200px;
				background-color: lightyellow;
				border: 1px solid lightcoral;
				margin: 0px auto;
			}
			.s1{
				/*行内元素设置宽和高未必有效
				*块元素设置宽和高一定有效的
				* */
				width: 100px;
				height: 100px;
				background-color: greenyellow;
				border: 1px solid blue;
				/*span 是一个行内元素  
				* 行内元素没有盒子模型
				* 行内元素没有办法设置内边距和外边距特征
				* 只有块标签才有盒子模型  才可以设置内边距和外边距
				* 如果一个行内标签 非要使用盒子模型那么可以将行内元素转换为块元素
				* display  block 行内转换为块    inline 块转换为行内
				*  */
				display: block;
				margin-top: 20px;
			}
		</style>
	</head>
	<body>
		<div class="div1">
			<span class="s1">今天是3月6号</span>
		</div>
	</body>
</html>
Copy after login

Recommended learning: css video tutorial

The above is the detailed content of How block elements are converted to inline elements. For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are inline elements and block-level elements? What are inline elements and block-level elements? Aug 17, 2023 am 11:33 AM

Inline elements include div, p, h1-h6, ul, ol, li, table, form, etc.; block-level elements include span, a, img, strong, em, input, label, etc. The characteristics of the two elements: 1. Inline elements will occupy a row, automatically fill the width of the parent container, can set width, height, inner and outer margins and other attributes, and can contain other block-level elements and inline elements; 2. Inline elements will not It will occupy an exclusive line, the width and height are determined by the content, and the inner and outer margins only affect the arrangement of the elements themselves, etc.

What are html inline elements and block elements? What are html inline elements and block elements? Feb 20, 2021 pm 04:03 PM

HTML inline elements include: a (anchor element), b (bold), br (line break), code, em (emphasis), font (font setting), i (italic), img (picture), input (input box) ), span, strong (bold emphasis), textarea, u, etc.; block elements include: address (address), blockquote (block quote), center (center-aligned block), div, h1~h6 (title), hr ( Horizontal dividing line), p, ul, ol, etc.

The difference between inline elements and block-level elements: an in-depth understanding of element classification in HTML The difference between inline elements and block-level elements: an in-depth understanding of element classification in HTML Dec 23, 2023 am 10:01 AM

The difference between inline elements and block-level elements: In-depth understanding of the classification of elements in HTML In HTML, elements can be divided into two categories: inline elements and block-level elements. Understanding their differences is very important to correctly master the layout and style of HTML. This article will provide an in-depth understanding of the characteristics of inline elements and block-level elements, and provide specific code examples. Inline elements Inline elements are elements that are displayed inline by default in HTML documents. They do not occupy an entire row, but appear closely within a row based on how the document flow is arranged. Common in the industry

What is the difference between inline elements and block-level elements? What is the difference between inline elements and block-level elements? Oct 16, 2023 am 09:51 AM

There are five differences between inline elements and block-level elements: "box model", "arrangement", "content display", "relative position" and "default size": 1. Inline elements do not generate independent boxes, width and height Determined by the content, block-level elements will generate an independent rectangular frame, and attributes such as width, height, margins, and padding can be set; 2. Inline elements are arranged horizontally on the same line, while block-level elements will be pressed from top to bottom. Arrange in order; 3. Inline elements cannot contain block-level elements, while block-level elements can contain other block-level elements and inline elements.

What are the inline elements and block-level elements in html? What are the inline elements and block-level elements in html? Oct 16, 2023 am 09:57 AM

Commonly used inline elements and block-level elements in HTML are: 1. Block-level elements include semantics such as <div>, <p>, <ul>, <ol>, <li>, <h1>~<h6>, and <header>. tags; 2. Inline elements include tags such as <span>, <a>, <strong>, <em>, <img>, and <input>.

What is the difference between inline elements and block-level elements? What is the difference between inline elements and block-level elements? Aug 18, 2023 pm 05:02 PM

The differences between inline elements and block-level elements are: 1. Inline elements will not occupy an exclusive line, while block-level elements will occupy an exclusive line; 2. The width of an inline element is determined by its content, while the width of a block-level element defaults to that of its parent element. 100%; 3. The box model of inline elements mainly includes horizontal padding, margins and borders, in each direction.

Detailed explanation of usage scenarios and methods of CSS inline elements and block-level elements Detailed explanation of usage scenarios and methods of CSS inline elements and block-level elements Dec 23, 2023 pm 02:19 PM

Detailed explanation of CSS inline elements and block-level elements: Explore their application scenarios and usage methods In CSS, elements can be divided into two types based on their display characteristics: inline elements and block-level elements. For web developers, it is very important to understand these two concepts, because their different characteristics determine their application scenarios and usage methods. Inline elements are elements that occupy only one line in a web page. Common inline elements include <span>, <img>, and <input>

Introduction and differences between HTML5 inline elements and block-level elements Introduction and differences between HTML5 inline elements and block-level elements Dec 28, 2023 pm 02:57 PM

Introduction and differences between HTML5 inline elements and block-level elements HTML5 is a markup language used to create the structure of web pages. In HTML5, elements are divided into two types: inline elements and block elements. Introduction to inline elements: Inline elements are elements that appear as a line in the document flow. They only take up space for their own content and do not disrupt the overall layout of the page. Inline elements can contain text, other inline elements, or parts of block-level elements

See all articles