The difference between block and inline
block is also called block-level element, inline is also called inline element
Block-level elements
Occupy a separate line Each block-level element is the beginning of a new line
The default width is 100%
You can set the width and height and you can set the margin and padding attributes.
Inline elements
#Can be placed on the same line as other inline elements without newline characters before or after the element The width, height, and width cannot be set. The display setting is invalid after being filled with the internal content.
Block-level elements cannot be nested inside
No It can be said that setting the width and height img input textarea select is also an inline element. It can be said that setting the width and height is a replacement element.
The replacement element means that the browser determines the specific content of the element based on its tags and attributes. Display content. Replacement elements generally have intrinsic dimensions, so they have width and height that can be set.
Only margin-left margin-right padding-left padding-right can be set, that is, the horizontal direction, the vertical direction is invalid
Block-level elements and inline elements can change each other by specifying display
Commonly used block-level elements
◎ blockquote - block quotation
◎ dir - directory list
◎ p - Commonly used block-level elements
◎ fieldset - form is equivalent to GroupPanel
◎ form - form
◎ h1 - Big title
◎ h2 - Subtitle
◎ h3 - Level 3 title
◎ h4 - Level 4 heading
◎ h5 - Level 5 heading
◎ h6 - Level 6 heading
◎ hr - Horizontal separator line
# ◎ pre - formatted text to output the text according to the input format
◎ table - table
◎ ul - non-sorted list
Commonly used inline elements
◎ b - bold
◎ br - line break
◎ cite - quote
◎ code - code
◎ em - emphasis
Recommended)
◎ i - italics
◎ img - picture
◎ input - input box
◎ label - table label
◎ q - short quote
◎ select - item selection
◎ small - small font text
◎ span - commonly used inline container, defining blocks within text
◎ strong - bold emphasis
◎ sub - subscript
◎ sup - superscript
◎ textarea - multi-line text input box
Style:
span,a{ width:100px; height:500px; } span,a { margin-top:50px; margin-right:150px; margin-bottom:50px; margin-left:150px; padding-left:10px; padding-right:10px; padding-top:100px; padding-bottom:100px; border:1px solid yellow; background-color:#d1d5d3; } #p3,#p4{ width:400px; height:200px; background-color:black; }
Structure:
<p id="container"> <span>我是span </span> <a href="#">我是a</a> <p id="p4">p4</p> </p>
Result:
1. Verify that the margin is only valid in the horizontal direction
in the element diagram
The above is the detailed content of What are the differences between function block and inline?. For more information, please follow other related articles on the PHP Chinese website!

win11business和consumer版本其实就是消费版还有商业版,两者的区别不大,但还是有的,下面我们就一起来看一下两者的具体区别在哪里。win11business和consumer版本区别:1、两者如果版本相同的话,跟专业版没什么区别。2、两者的功能基本相同,不过微软的授权方式是不同的。3、激活的方式也是不同的,consumer是单一授权,而business是批量授权。4、我们下载consumer就可以了。

许多用户在选择智能手表的时候都会选择的华为的品牌,其中华为GT3pro和GT4都是非常热门的选择,不少用户都很好奇华为GT3pro和GT4有什么区别,下面就就给大家介绍一下二者。华为GT3pro和GT4有什么区别一、外观GT4:46mm和41mm,材质是玻璃表镜+不锈钢机身+高分纤维后壳。GT3pro:46.6mm和42.9mm,材质是蓝宝石玻璃表镜+钛金属机身/陶瓷机身+陶瓷后壳二、健康GT4:采用最新的华为Truseen5.5+算法,结果会更加的精准。GT3pro:多了ECG心电图和血管及安

我们知道在C语言中,'while'关键字用于定义一个循环,该循环根据传递给循环的条件来工作。现在,由于条件可以有两个值,即真或假,所以如果条件为真,则while块内的代码将被重复执行,如果条件为假,则代码将不会被执行。现在,通过将参数传递给while循环,我们可以区分while(1)和while(0),因为while(1)是一个条件始终被视为真的循环,因此块内的代码将开始重复执行。此外,我们可以说明,传递给循环并使条件为真的不是1,而是如果任何非零整数传递给while循环,则它将被视为真条件,因

Moondrop has released the Block true wireless earbuds for audio enthusiasts that sit comfortably in the outer ear. Unlike earbuds jammed into ear canals, the Block does not cause a plugged ear feeling or collect ear wax. The 13 mm driver is enclosed

最近不少小伙伴问小编,win10逻辑分区和主分区的区别是什么,我们大多数电脑,其实都是分为了一个C盘主分区,然后其他的D盘、E盘和F盘等都属于逻辑分区,一般情况下是→然后再建→在扩展分区里面,再创建。下面小编整理了详细的教程,一起来看看吧。win10逻辑分区和主分区区别的详细介绍主分区、扩展分区和逻辑分区的区别简单来说,我们大多数电脑,都是分为了一个C盘主分区,然后其他的D盘、E盘和F盘等都属于逻辑分区,将D盘、E盘、F盘等出了主分区之外的磁盘组合,则就属于一个扩展分区。对于硬盘主分区、扩展分区

win32和win64的区别是:1、win32是指Microsoft Windows操作系统的32位环境,win64是指Microsoft Windows操作系统的64位版本,比32位版本更加稳定快速;2、win32最高支持2G的内存,win64必须是4G以上内存;3、win64支持基于64位的处理器,而win32却不能完全支持;4、win32追求简洁,win64追求性能。

在C中,结构体和数组都用作数据类型的容器,即在结构体和数组中我们都可以存储数据,也可以对它们执行不同的操作。基于内部实现,以下是两者之间存在一些基本差异。Sr.编号键结构数组1定义结构体可以定义为一种数据结构,用作容器,可以容纳不同类型的变量。另一方面,数组是一种用作容器的数据结构,可以容纳相同类型的变量,但不支持多种数据类型变量。2内存分配输入数据的内存分配结构不必位于连续的内存位置。而在数组的情况下,输入数据存储在连续的内存分配中,这意味着数组将数据存储在分配连续内存块的内存模型中(即,具有

Vue3和Vue2的区别:更丰富的生命周期钩子Vue是一种流行的JavaScript框架,用于构建交互式的Web应用程序。Vue2是Vue.js的稳定版本,而Vue3是Vue.js的最新版本。Vue3带来了许多改进,其中之一是更丰富的生命周期钩子。本文将介绍Vue3和Vue2生命周期钩子的区别,并通过代码示例进行演示。Vue2的生命周期钩子在Vue2中,我们


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Zend Studio 13.0.1
Powerful PHP integrated development environment

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
