What is the difference between lists and tables in html5

WBOY
Release: 2022-04-28 13:58:52
Original
4968 people have browsed it

The difference between lists and tables in html5: 1. Tables are mainly used to display data, while lists are mainly used to layout data; 2. Tables use table tags with tr, td, th, etc. The list is defined using the li tag together with ol, ul and other tags.

What is the difference between lists and tables in html5

The operating environment of this article: Windows 10 system, html5 version, Dell G3 computer.

What is the difference between lists and tables in html5

1. Table tags

1.1 Basic use of tables

  • Tables are mainly used for display , display data, because it can make the data display very regular and very readable. Especially when displaying data in the background, it is very important to be able to use tables skillfully. A clear and simple table can present complex data in an organized manner.
  • Teacher pink: Tables are not used to lay out pages, but to display data.
    What is the difference between lists and tables in html5

1.2 Basic usage of tables


             
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
Copy after login
... ...
单元格内的文字
  1. ##
    is used to define tables Tag of.
  2. tag is used to define a row in the table and must be nested in the
    tag middle.
  3. is used to define cells in the table and must be nested in the tag middle.The letters
  4. td refer to table data (table data), that is, the content of data cells.
1.3 Header cell label

    Generally, the header cell is located in the first row or column of the table, and the text content in the header cell is bold. Display centered.
  • tag indicates the abbreviation of the table head of the HTML table.
    
                  
    Copy after login
    Copy after login
    Copy after login
    Copy after login
    Copy after login
    Copy after login
    ...
    姓名 性别 电话
    内容1 内容2

    What is the difference between lists and tables in html5

    pink teacher’s summary: The header cell is also a cell, often used in the first row of the table to highlight the importance, inside the header cell The text will be bold and centered.

    1.4 Table attributes

    案例
    What is the difference between lists and tables in html5

    案例分析:

    1. 第一行里面是th表头单元格;
    2. 第二行开始里面是td普通单元格;
    3. 单元格里面可以放任何元素,文字链接图片等都可以;
    4. 用到宽度和高度边框cellpadding和cellspacing;
    5. 表格浏览器中对其align;

    1.5表格结构标签

    • 使用场景:因为表格可能很长,为了更好的表示表格的语义,可以将表格分割成 表格头部和表格主体两大部分.在表格标签中,分别用:** **标签 表格的头部区域、 ****标签 表格的主体区域. 这样可以更好的分清表格结构。
    • 内容
      1. :用于定义表格的头部, 内部必须拥有标签,一般是位于第一行。
      2. :用于定义表格的主体,主要用于放数据本体。
      3. 以上标签都是放在
        标签中。

        1.6合并单元格

        特殊情况下,可以把多个单元格合并为一个单元格,这里同学们会最简单的合并单元格即可。

        1. 合并单元格
        2. 目标单元格
        3. 合并单元格的步骤

        What is the difference between lists and tables in html5

        1.6.1合并单元格方式:

        • 跨行合并:rowspan=“合并单元格的个数”
        • 跨列合并:colspan=“合并单元格的个数”

        What is the difference between lists and tables in html5

        1.6.2目标单元格:

        • 跨行:最上侧单元格为目标单元格,写合并代码
        • 跨列:最左侧单元格为目标单元格,写合并代码

        1.6.3合并单元格三部曲

        1. 先确定是跨行还是跨列合并;
        2. 找到目标单元格,写上合并方式=合并的单元格数量。比如: ;
        3. 删除多余的单元格。

        1.7表格总结

        表格学习整体可以分为三大部分:

        1. 表格的相关标签
        2. 表格的相关属性
        3. 合并单元格
        • 表格的相关标签:table标签、tr行标签、td单元格标签、th表头单元格标签、thead表格头部区域标签、tbody表格主体区域标签
        • 表格的相关属性:align、border、cellpadding、cellspacing、width
        • 合并单元格

        2.列表标签

        • 表格是用来显示数据的,那么列表就是用来布局的。
        • 列表最大的特点就是整齐、整洁、有序,它作为布局会更加自由和方便。
        • 根据使用情景不同,列表可以分为三大类:无序列表、 有序列表和自定义列表。
          What is the difference between lists and tables in html5

        2.1无序列表

          标签表示 HTML 页面中项目的无序列表,一般会以项目符号呈现列表项,而列表项使用
        • 标签定义。
          无序列表的基本语法格式如下:

          
                         
          Copy after login
          Copy after login
          Copy after login
          Copy after login
          Copy after login
          Copy after login
          • 列表项1
          • 列表项2
          • 列表项3...
          1. 无序列表的各个列表项之间没有顺序级别之分,是并列的。
            • 中只能嵌套
            • ,直接在
                标签中输入其他标签或者文字的做法是不被允许的。
              • 之间相当于一个容器,可以容纳所有元素。
              • 无序列表会带有自己的样式属性,但是在实际使用的时候,我们会使用CSS来设置。

              2.2有序列表

              • 有序列表即为有排列顺序的列表,其各个列表项会按照一定的顺序排列定义。

              • 在HTML标签中,

                  标签用于定义有序列表,列表排序以数字来显示,并且使用
                1. 标签来定义列表项。

                2. 有序列表的基本语法格式如下:

                1. 列表项1
                2. 列表项2
                3. ...
                Copy after login
                  1. 中只能嵌套
                  2. ,直接在
                      标签中输入其他标签或者文字的做法也是不被允许的。
                    1. 之间相当于一个容器,可以容纳所有元素。
                    2. 有序列表会带有自己的样式属性,但在实际使用的时候,我们一般会使用CSS来设置。

                    2.3 自定义列表

                    自定义列表的使用场景:

                    自定义列表常用于对术语或名词进行解释和描述,定义列表的列表项前没有任何项目符号。
                    What is the difference between lists and tables in html5

                    在HTML标签中,

                    标签用于定义描述列表(或定义列表),该标签会与
                    (定义项目/名字)和
                    (描述每一个项目/名字)一起使用。

                    其基本语法如下:

                    
                                   
                    Copy after login
                    Copy after login
                    Copy after login
                    Copy after login
                    Copy after login
                    Copy after login
                    名词
                    名词2
                    名词3
                    ...
                    1. 里面只能包含
                      .
                    2. 没有个数限制,经常是一个
                      对应多个
                      .
                    • 在 HTML 标签中,
                      • 标签用于定义描述列表(或定义列表),该标签会与 (定义项目/名字)和
                      • (描述每一个项目/名字)一起使用。

                    2.4列表总结

                Attribute name Attribute value Description align left, center, right Specifies the alignment of the table relative to surrounding elements border 1 or "" Specifies whether the table cell has a border, the default is "", indicating no border cellpadding Pixel value Specifies the space between the edge of the cell and its content. The default pixel is 1 cellspacing Pixel value Specify the space between cells, the default pixel is 2 width Pixel value or percentage Specify the width of the table
                标签名 定义 说明
                  无序列表 里面只能包含li,没有顺序,使用较多,li里面可以包含任何标签
                    有序列表 里面只能包含li,有顺序,使用相对较少,li里面可以包含任何标签
                    自定义列表 里面只能包含dt和dd,dt和dd里面可以放任何标签

                    注意:

                    1. 学会什么时候使用无序列表,什么时候使用自定义列表。
                    2. 无序列表和自定义列表代码怎么写?
                    3. 列表布局在学习完CSS后再完成。

                    3.表单标签

                    现实中的表单,类似于我们去银行办理信用卡填写的单子。

                    What is the difference between lists and tables in html5

                    网页中的表单展示
                    What is the difference between lists and tables in html5

                    3.1为什么需要表单

                    • 使用表单的目的就是为了用户的信息。
                    • 在我们网页中,我们也需要跟用户进行交互,手机用户资料,此时就需要填写表单。

                    3.2表单的组成

                    在HTML中,一个完整的表单通常由表单域、表单控件和提示信息3个部分组成。
                    What is the difference between lists and tables in html5

                    3.3表单域

                    表单域是一个包含表单元素的区域。

                    在HTML标签中,

                    标签用于定义表单域,以实现用户信息的收集和传递。

                    会把它范围内的表单元素信息提交给服务器。

                    
                                  
                    Copy after login
                    Copy after login
                    Copy after login
                    Copy after login
                    Copy after login
                    Copy after login
                    各种表单控件

                    常用属性:

                    属性 属性值 作用
                    action url地址 用于指定接受并处理表单数据的服务器程序的url地址
                    method get/post 用于设置表单数据的提交方式,其取值为get或者post
                    name 名称 用于指定表单的名称,以区分同一个页面中的表单域

                    For the basic class, we don’t need to submit data in the form field for the time being. We only need to write the form tag. This will be explained again in the employment class and other stages of learning server programming.

                    This is just Two points need to be remembered:

                    1. Before we write the form elements, there should be a form field to contain them.
                    2. The form field is the form tag

                    3.4 Expression controls (form elements)

                    Various form elements can be defined in the form field. These form elements are content controls that allow users to enter or select in the form.

                    Mainly includes the following content:

                    1. input input form element
                    2. select drop-down form element
                    3. textarea text area element

                    3.4.1Form element

                    In the English word, input means input, and in the form elementTags are used to collect user information.

                    In thetag, it contains a type attribute. According to different type attribute values, the input field has many forms (text field, check box, masked text spaces, radio buttons, buttons, etc.).

                    • # The label is a single labelThe type attribute sets different attribute values to specify different control types

                    typeThe attribute values of the attribute and their descriptions are as follows:

                    Property Value Description button Define a clickable button (in most cases, For launching scripts via JavaScript) checkbox Definition of checkbox file Definition Input fields and Browse button for file upload hidden Define hidden input fields image Define the submit button in image form password Define the password field, the characters in the field are masked radio Define the radio button reset Define the reset button, which will clear all data in the form submit Define the submit button, which will send the form data to the server text Definition A single-line input field in which users can enter text. The default width is 20 characters ##In addition to the type attribute, the

                    tag also has There are many other attributes, and their commonly used attributes are as follows:

                    1. name和value是每个表单元素都有的属性值,主要是给后台人员使用。
                    2. name表单元素的名字,要求单选按钮和复选框要有相同的name值。
                    3. checked属性主要是针对于单选框和复选框,主要作用-打开页面,就要可以默认选中某个表单元素。
                    4. maxlength是用户可以在表单元素输入的最大字符数,一般较少使用。

                    1.有些表单元素想刚打开的时候就迷人显示几个文字怎么做

                    可以给这些表单元素设置value属性=“值”

                    用户名:

                    2.页面中的表单元素很多,如何区别不同的表单元素?

                    name属性:当前input表单的名字,后台可以通过这个name属性找到这个表单,页面中的表单很多,name的主要作用就是区别于不同的表单。

                    用户名:

                    • name 属性后面的值,是自定义的;
                    • radio(或者CheckBox)如果是一组,我们必须给他们命名相同的名字;
                    Copy after login

                    3.如果页面一打开就让某个单选按钮或者复选框的按钮是选中状态?

                    checked属性:表示默认选中状态,用于单选框和复选框。

                    性别:
                    Copy after login

                    4.如何让input表单元素展示不同的形态?比如单选框或者文本框

                    type属性:type属性可以让input表单元素设置不同的形态;

                    Copy after login

                    3.4.2标签

                    • 标签为input元素定义标注(标签);
                    • 标签用于绑定一个表单元素,当点击 标签内的文本时,浏览器就会自动将焦点转到或者选择对应的表单元素上面,用来增加用户体验。
                    • 语法:
                    Copy after login

                    核心:标签的for属性应当与相关元素的id属性相同。

                    3.4.3表单元素

                    • 使用场景:在页面中,如果有多个选项让用户选择,并且想要节约页面空间时,我们可以使用 标签空间定义下拉列表。

                    What is the difference between lists and tables in html5

                    • 语法:
                    Copy after login
                    1. 中至少包含一对 ;
                    2. 中定义selected= “selected”时,当前默认选中项。

                    3.4.4表单元素

                    • 使用场景:当用户输入内容较多的情况下,我们就不能使用文本框表单了,此时我们可以使用标签。

                    • 在表单元素中,标签是用于定义多行文本输入的控件。

                    • 使用多行文本输入控件,可以输入更多的文字,该控件常见于留言板,评论。

                    • 语法:

                    Copy after login
                    1. 通过 标签可以轻松地创建多行文本输入框。
                    2. cols=“每行中的字数”,rows=“显示的行数”; 实际开发中一般使用CSS来改变大小

                    3.5表单元素的总结

                    1. 在表单元素中我们学习了三大组:input输入表单元素 select下拉表单元素 textarea文本域表单元素;
                    2. 这三组表单元素都应该包含在form表单域里面,并且有name属性。
                    
                                  
                    Copy after login
                    Copy after login
                    Copy after login
                    Copy after login
                    Copy after login
                    Copy after login
                    1. 有三个名字非常相似的标签:
                      • 表单域form使用场景:提交区域内表单元素给后台服务器;
                      • 文件域 file是input type属性值,使用场景:上传文件;
                      • 文本域 textarea使用场景:可以输入多行文字,比如留言板、网站介绍等
                    2. 我们当前阶段不需要提交表单元素,所以我们只负责表单元素的外观形态即可。

                    4.综合案例

                    What is the difference between lists and tables in html5

                    推荐教程:《html视频教程

                    ##Attribute Attribute value Description name Customized by user Define the name of the input element value By User-defined Specifies the value of the input element checked checked Specifies that this input element should be selected when it is first loaded maxlength Positive integer Specifies the maximum length of characters in the input field

                  The above is the detailed content of What is the difference between lists and tables in html5. 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!