List tag ul ol dl
There are three types of list tags:
Unordered list ul
Yes Sequence list ol
Definition list dl
Unordered list, each item in the unordered list is
<body> <ul> <li>张三</li> <li>李四</li> <li>王五</li> </ul> </body>
Effect:
Note:
li cannot exist alone and must be wrapped in ul; conversely, the "son" of ul cannot be anything else but li.
#ul's function is not to add small dots to the text, but to add the "semantics" of the unordered list.
Attribute
type="Attribute value". Attribute values can be selected: disc (solid dot, default), square (solid square dot), circle (hollow circle)
The effect is as follows:
Ordered list, each item in it is
<body> <ol> <li>张三</li> <li>李四</li> <li>王五</li> </ol> </body>
Effect:
Attributes:
type="attribute value"; the attribute value can be: 1, a, A, i, I; combined with the start attribute to indicate the starting number
Definition list
dl has no attributes. The child elements of dl can only be dt and dd
dt: the title of the list, this tag is required
dd: the list of lists Item, you don’t need to write
Note: dt, dd can only be in dl; dl can only have dt, dd
<dl> <dt>第一条规则</dt> <dd>不准睡觉</dd> <dd>不准交头接耳</dd> <dd>不准下神</dd> <dt>第二条规则</dt> <dd>可以泡妞</dd> <dd>可以找妹子</dd> <dd>可以看mv</dd> </dl>
Effect:
Table label
Table label is represented by
A table<table> is composed of each row<code><tr>, each line is composed of <code><td>. <br>So we have to remember that a table is composed of rows (rows are composed of columns), not rows and columns. <pre class='brush:php;toolbar:false;'><table>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table></pre><h4 id="Properties">Properties</h4>
<ul class=" list-paddingleft-2">
<li><p>border: border. The unit is pixels</p></li>
<li><p>style="border--collapse;collapse;": The cell line and the table border are merged</p></li>
<li>##width: width. The unit is pixels<p></p>
</li>
<li>height: height. The unit is pixels <p></p>
</li>
<li>bordercolor: The color of the table border <p></p>
</li>
<li>align: The horizontal mode of the table. The attribute value can be filled in: left right center<p></p>
<blockquote>Note: This is not to set the alignment of the content in the table. If you want to set the alignment of the content, you need to set the cell label Set <p></p>
</blockquote>
</li>
<li>cellpadding: the distance from the cell content to the edge. The unit is pixels. By default, the text is next to the line on the left, that is, the default value is 0<p></p>
</li>
<li>cellspacing: the distance between cells (margins) . The unit is pixels, the default is 0<p></p>
</li>
<li>bgcolor="": the background color of the table <p></p>
</li>
<li>background="Path": background image. The priority of the background image is greater than the background color<p></p>
</li>
</ul> row<h4></h4>A table is composed of rows and rows<p></p>
<p>Attributes<strong></strong></p>
<ul class=" list-paddingleft-2">
<li>#dir: Public property, sets the arrangement of the cell contents in this row. Possible values: ltr: from left to right; rtl: from right to left<p></p>
</li>
<li>bgcolor: Set the background color of the cells in this row<p></p>
</li>
<li>height: The height of a row <p></p>
</li>
<li>align="center": The content of a row is displayed horizontally in the center, values: left, center, right<p></p>
</li>
<li>valign="center": The content of a row is vertically centered, values: top, middle, bottom<p></p>
</li>## cell</ul>
<h4></h4> Attribute <p><strong></strong></p>
<ul class=" list-paddingleft-2">#align: Content horizontal alignment. The attribute value is: left right center<li><p></p></li>valign: The vertical alignment of the content. The attribute values are: top middle bottom<li><p></p></li>width: absolute value or relative value (%)<li><p></p></li>height: height of the cell<li> <p></p>
</li>bgcolor: Set the background color of the cell <li><p></p></li>background: Set the background image of the cell <li><p></p></li>cell Merging of cells</ul>
<h4 id="If-you-want-to-merge-two-or-more-cells-you-must-delete-the-remaining-cells-and-leave-only-one-cell">If you want to merge two or more cells, you must delete the remaining cells and leave only one cell</h4>Attributes of the cell:<p><br></p>
<ul class=" list-paddingleft-2">colspan: Horizontal merge. For example, colspan="2" means that the current cell will occupy two cell positions in the horizontal direction <li><p></p></li>rowspan: merge vertically. For example, rowspan="2" means that the current cell occupies two cell positions in the vertical direction<li>
</ul>
<h4 id="表格的标题-使用时和tr标签并列"> 表格的标题。使用时和tr标签并列</h4>
<p>效果:<br><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/005/06dcf1df41543c8ce78c070efae5cef3-4.png?x-oss-process=image/resize,p_40" class="lazy" alt="Related tags in HTML body tag 2" ></p>
<h2 id="表单标签">表单标签 </h2>
<p>表单标签用表示,用于与服务器的交互。表单就是收集用户信息的,就是让用户填写的,选择的</p>
<p><strong>属性:</strong></p>
<ul class=" list-paddingleft-2">
<li><p>name:表单的名称,用于JS来操作或控制表单时使用</p></li>
<li><p>id:表单的名称,用于JS来操作或控制表单时使用</p></li>
<li><p>action:指定表单数据的处理程序,一般是PHP</p></li>
<li><p>method:表单数据的提交方式,一般取值:get(默认)和 post</p></li>
</ul>
<p>action属性就是表示,表单将提交到哪里。 method属性表示用什么HTTP方法提交,有get、post两种。</p>
<p><strong>get提交和post提交的区别:</strong><br>GET方式:<br>将表单数据,以"name=value"形式追加到action指定的处理程序的后面,两者间用"?"隔开,每一个表单的"name=value"间用"&"号隔开。<br>特点:只适合提交少量信息,并且不太安全(不要提交敏感数据)、提交的数据类型只限于ASCII字符。</p>
<p>POST方式:<br>将表单数据直接发送(隐藏)到action指定的处理程序。POST发送的数据不可见。Action指定的处理程序可以获取到表单数据。<br>特点:可以提交海量信息,相对来说安全一些,提交的数据格式是多样的(Word、Excel、rar、img)。</p>
<p><strong>Enctype:</strong><br>表单数据的编码方式(加密方式),取值可以是:application/x-www-form-urlencoded、multipart/form-data。Enctype只能在POST方式下使用。</p>
<ul class=" list-paddingleft-2">
<li><p>Application/x-www-form-urlencoded:<strong>默认</strong>加密方式,除了上传文件之外的数据都可以</p></li>
<li><p>Multipart/form-data:<strong>上传附件时,必须使用这种编码方式</strong>。</p></li>
</ul>
<h4 id="输入标签-文本框"> 输入标签(文本框)</h4>
<p>用于接收用户输入</p><pre class='brush:php;toolbar:false;'><input type=&#39;text&#39; /></pre><p><strong>属性:</strong></p>
<ul class=" list-paddingleft-2">
<li>
<p>type="text":文本类型。属性值可以为:</p>
<blockquote></blockquote>
</li>
<ul class=" list-paddingleft-2" style="list-style-type: square;">
<li><p>注:如果要限制上传文件的类型,需要配合JS来实现验证,对上传文件的安全检查:一是扩展名的检查,二是文件数据内的检查</p></li>
<li><p>text(默认):文本类型</p></li>
<li><p>password:密码类型</p></li>
<li><p>radio:单选按钮,名字相同的按钮作为一组进行单选(单选按钮,天生不能互斥,如果想要互斥,必须要有相同的name属性)</p></li>
<li><p>checkbox:多选按钮,名字相同的按钮作为一组进行选择</p></li>
<li><p>checked:将单选按钮或多选按钮默认处于选择状态。当标签的type="radio"时,可以用这个属性,属性值也是checked</p></li>
<li><p>hidden:隐藏框,在表单中包含不希望用户看见的信息</p></li>
<li><p>button:普通按钮,结合JS代码进行使用</p></li>
<li><p>submit:提交按钮,传送当前表单的数据给服务器或者其他程序处理,这个按钮不需要写value自动就会有"提交"文字,点击按钮后,这个表单就会被提交到form标签的action属性中指定的我那个页面区</p></li>
<li><p>reset:重置按钮,清空当前表单的内容,并设置为最初的默认值</p></li>
<li><p>image:图片按钮,和提交按钮的功能完全一致,只不过图片按钮可以显示图片</p></li>
<li>
<p>file:文件选择框</p>
<blockquote></blockquote>
</li>
</ul>
<ul class=" list-paddingleft-2" style="list-style-type: square;"></ul>
<li><p>value="内容":文本框里的默认内容</p></li>
<li>
<p>size="50":表示文本框可以显示五十个字符,一个英文或一个中文都算一个字符</p>
<blockquote><p>注:size属性值的单位不是像素</p></blockquote>
</li>
<li><p>readonly:文本框只读,不能编辑。因为它的属性值是readonly,所以属性值可以不写</p></li>
<li><p>disabled:文本框只读,不能编辑。光标点不进去,属性值可以不写</p></li>
</ul>
<h4 id="下拉列表选项"> 下拉列表选项</h4>
<p>标签里面的每一项都用表示,select是"选择",option是<br>"选项"</p>
<p><strong>属性:</strong></p>
<ul class=" list-paddingleft-2">
<li><p>mutiple:可以对下啦列表中的选项进行多选,没有属性值</p></li>
<li><p>size="":如果属性值大于 1,则列表为滚动视图,默认属性值为1,即下拉视图</p></li>
</ul>
<p><strong>属性:</strong></p>
<ul class=" list-paddingleft-2"><li><p>selected:预选中。没有属性值</p></li></ul><pre class='brush:php;toolbar:false;'> <form>
<select>
<option>小学</option>
<option>初中</option>
<option>高中</option>
<option>大学</option>
<option selected="">研究生</option>
</select>
<br><br><br>
<select size="3">
<option>小学</option>
<option>初中</option>
<option>高中</option>
<option>大学</option>
<option>研究生</option>
</select>
<br><br><br>
<select multiple="">
<option>小学</option>
<option>初中</option>
<option selected="">高中</option>
<option selected="">大学</option>
<option>研究生</option>
</select>
<br><br><br>
</form></pre><p>效果:<br><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/005/2e749b5c165e05f1d51d3c2eb4b80a60-5.png?x-oss-process=image/resize,p_40" class="lazy" alt="Related tags in HTML body tag 2" ></p>
<h4 id="多行文本输入框"> 多行文本输入框</h4>
<p>text是"文本",area是"区域"</p>
<p><strong>属性:</strong></p>
<ul class=" list-paddingleft-2">
<li><p>value:提交给服务器的值</p></li>
<li><p>rows="":指定文本区域的行数</p></li>
<li><p>cols="":指定文本区域的列数</p></li>
<li><p>readonly:只读</p></li>
</ul><pre class='brush:php;toolbar:false;'><form>
<textarea name="txtInfo" rows="4" cols="20">路飞学城</textarea>
</form></pre><p><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/000/000/005/2e749b5c165e05f1d51d3c2eb4b80a60-6.png?x-oss-process=image/resize,p_40" class="lazy" alt="Related tags in HTML body tag 2" ></p>
</td>
The above is the detailed content of Related tags in HTML body tag 2. For more information, please follow other related articles on the PHP Chinese website!

HTML(HyperTextMarkupLanguage)是用于创建Web页面的标准语言,它使用标签和属性来描述页面上的各种元素,例如文本、图像、表格和链接等等。但是,在处理HTML文本时,很难将其中的文本内容快速地提取出来用于后续的处理。这时,我们可以使用Python中的正则表达式来去除HTML标签,以达到快速提取纯文本的目的。在Python中,正则表

如何在Go语言中使用正则表达式提取HTML标签内容导读:正则表达式是一种强大的文本匹配工具,它在Go语言中也有着广泛的应用。在处理HTML标签的场景中,正则表达式可以帮助我们快速提取需要的内容。本文将介绍如何在Go语言中使用正则表达式提取HTML标签的内容,并给出相关代码示例。一、引入相关包首先,我们需要导入相关的包:regexp和fmt。regexp包提供

PHP是一种常用的服务器端脚本语言,广泛应用于网站开发和后端应用程序开发中。在开发网站或应用程序时,经常会遇到需要处理字符串中的HTML标签的情况。本文将介绍如何使用PHP去除字符串中的HTML标签,并提供具体的代码示例。为什么需要去除HTML标签?在处理用户输入或从数据库中获取的文本时,经常会包含HTML标签。有时候我们希望在显示文本时去除这些HTML标签

在PHP中,可以使用htmlentities()函数来转义html,能把字符转换为HTML实体,语法“htmlentities(string,flags,character-set,double_encode)”。PHP中也可以使用html_entity_decode()函数来反转义html,把HTML实体转换为字符。

String是Java中的final类,它是不可变的,这意味着我们不能改变对象本身,但我们可以更改对象的引用。可以使用String类的replaceAll()方法从给定字符串中删除HTML标签。我们可以使用正则表达式从给定字符串中删除HTML标记。从字符串中删除HTML标签后,它将返回一个字符串作为普通文本。语法publicStringreplaceAll(Stringregex,Stringreplacement)示例publicclassRemoveHTMLTagsTest{&nbs

我们可以轻松地在表格中添加HTML标签。HTML标签应放置在<td>标签内。例如,在<td>标签内添加段落<p>…</p>标签或其他可用标签。语法以下是在HTML表格中使用HTMl标记的语法。<td><p>Paragraphofthecontext</p><td>示例1下面给出了在HTML表格中使用HTML标签的示例。<!DOCTYPEhtml><html><head&g

PHP是一种高效的网页开发语言,其支持正则表达式功能,能够快速验证输入数据的有效性。在网页开发中,HTML是常见的标记语言,而对HTML标签进行验证,是网页表单验证的一种非常重要的方法。本文将介绍基本的HTML标签验证方法,以及如何使用PHP正则表达式进行验证。一、HTML标签基本结构HTML标签由尖括号包围的元素名称和属性组成,常见的标签包括p、a、div

HTML标签有<!DOCTYPE>、<html>、<head>、<title>、<meta>、<link>、<style>、<script>、<body>、<h1> - <h6>、<p>、<a>、<img>、<div>、<span>、<input>、<button>、<form


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

Atom editor mac version download
The most popular open source editor

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver Mac version
Visual web development tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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.
