search
HomeWeb Front-endH5 TutorialSummary of common HTML attribute knowledge points
Summary of common HTML attribute knowledge pointsApr 19, 2018 pm 05:41 PM
htmlSummarizeKnowledge points

This time I will bring you a summary of common HTML attribute knowledge points. What are the precautions when using common HTML attributes? The following is a practical case, let’s take a look.

In HTML, attributes are also more important for the entire HTML content. So how much do you know about HTML attributes? What are the attributes of HTML? The following article will give you a detailed introduction to the properties of HTML.

Definition:

HTML attributes: additional information provided by HTML elements

Simple understanding of HTML attributes:

1.HTML elements can set attributes

2. Attributes can add additional information to elements

3. General description and start tag of attributes

4. Attributes always appear in the form of names or value pairs, for example: name: "value"

Simple example to understand attributes:

a link

HTML links are defined by the tag, and the link's address is specified in the href attribute.

HTML common reference attribute values:

Property values ​​should always be enclosed in quotes.

Double quotes are the most commonly used, but there is no problem using single quotes.

Note: In some individual cases, such as the attribute value itself contains double quotes, you must use single quotes, for example: name='John "ShotGun" Nelson'

HTML Tip: Use lowercase attributes

Properties and property values ​​are not case-sensitive.

However, the World Wide Web Consortium recommends lowercase attributes/attribute values ​​in its HTML 4 recommendations.

Newer versions of (X)HTML require lowercase attributes.

HTML Attributes Reference Manual

Label describe
Define comments
Define document type
Define hypertext links
Define abbreviation
The definition only takes the first letter of the abbreviation, and does not support HTML5
Defines the contact information for the document author or owner
Deprecated in HTML5. Define embedded applets.
Define the area inside the image map
(New)
Define an article area
Define the sidebar content of the page
Define audio content
Define text bold
Defines the default address or default target for all links in the page.
HTML5 is not supported and deprecated. Define the default font, color, or size for text on the page.
(New) Allows you to set a piece of text independent of the text direction setting of its parent element.
Define text direction
Define large text, HTML5 does not support
Define long references
Define the body of the document

Define newline
Define a click button
(New) To define graphics, such as charts and other images, labels are just graphics containers and you must use scripts to draw the graphics
Define table title
HTML5 is not supported and deprecated. Define centered text.
Define citation
Define computer code text
Define attribute values ​​for one or more columns in the table
Define column groups in the table for formatting
(New) Define command buttons, such as radio buttons, checkboxes or buttons
(New) Define a list of options. Use this element in conjunction with an input element to define the possible values ​​of the input.
Define the description of the item in the definition list
Define deleted text
(New)
Details used to describe a document or part of a document
Definition definition project
(New) Define dialog boxes, such as prompt boxes
HTML5 is not supported and deprecated. Define directory listing.

Define sections in the document
Definition list details
Define items in list
Define emphasis text
(New) Define embedded content, such as plug-ins.
Define the border around elements in the form
(New)
Define the title of the
element
(New)
Specify individual stream content (images, charts, photos, code, etc.).
HTML5 is not supported and deprecated. Define the font, size and color of the text.
(New)
Defines the footer of a section or document.
Form that defines the HTML document
Define the window or frame of the frameset
Define frameset

to

Define HTML title
Define information about the document
(New)
Defines the header area of ​​the document

Define horizontal line
Define HTML document
Define italics
Define inline frames
Summary of common HTML attribute knowledge points Define image
Define input controls
Definition of inserted text
Define keyboard text
(New) Specifies the key pair generator field to use on the form.
Define the annotation of the input element
Defines the title of the fieldset element.
  • Define the items of the list
    Define the relationship between documents and external resources
    Define image mapping
    (New) Defines text with tokens. Please use the tag when you need to highlight text.
    Deprecated. Define menu list.
    Defines meta-information about the HTML document.
    (New) Define weights and measures. Use only for measurements with known maximum and minimum values.
    Define the section of the navigation link
    Define alternative content for users who don't support the framework. HTML5 is not supported
    Define alternative content for users who do not support client-side scripting.
    Define embedded objects
    Define an ordered list.
    Defines a combination of related options in a selection list.
    Define the options in the selection list.
    (New) Define different types of output, such as script output.

    Define paragraph.
    Define the parameters of the object.
     
    Define preformatted text.
    (New) Define the running progress (process).
    Define short quotes.
    (New) The tag is used in Ruby comments to define what is displayed by browsers that do not support Ruby elements.
    (New) tag defines the interpretation or pronunciation of a character (Chinese pinyin or character).
    (New) tag defines ruby ​​comments (Chinese pinyin or characters).
    Deprecated. Defines strikethrough text.
    Define computer code samples.
    <script> </script> Define client script.
    (New)
    The
    tag defines a section (section, section) in the document. Such as chapters, headers, footers, or other parts of the document.
    Define a selection list (Drop-down list).
    Define small text.
    (New) The tag defines media resources for media elements such as
    Define sections in the document.
    HTML5 is not supported and deprecated. Defines strikethrough text.
    Define emphasis text.
    Define the style information of the document.
    Define subscript text.
    (New) The tag contains the title of the details element, which is used to describe detailed information about the document or document fragment.
    Define superscript text.
    Define the table.
    Define the main content in the table.
    Define the cells in the table.
    Define a multi-line text input control.
    Define the content of table notes (footnotes) in the table.
    Define the header cell in the table.
    Define header content in the table.
    Define the date or time, or both.
    Defines the title of the document.
    Define the rows in the table.
    (New) The tag specifies an external text track for media such as a video element.
    Define typewriter text.
    Deprecated. Defines underlined text.
    Define an unordered list.
    Defines the variable portion of the text.
    The
    (New) Specifies where in the text it is appropriate to add line breaks.

    Global properties

    appears.
    Attributes describe
    accesskey Sets the keyboard shortcut for accessing an element.
    class Specifies the classname of the element
    contenteditable(New) Specifies whether the element's content can be edited.
    contextmenu(New) Specifies an element's context menu. When the user right-clicks the element, the context menu
    data-*(New) Used to store custom data for the page
    dir Sets the text direction of the content within the element.
    draggable(New) Specify whether an element can be dragged
    dropzone(New) Specify whether data will be copied, moved, linked, or deleted
    hidden(New) The hidden attribute specifies that the element is hidden.
    id Specifies the unique id of the element
    lang Sets the language code for the content within the element.
    spellcheck(New) Detect if an element is misspelled
    style Specify the inline style of the element
    tabindex Sets the tab order of elements.
    title Specifies additional information for the element (can be displayed in a tooltip)
    translate(New) Specifies whether an element's value needs to be translated when the page loads

    # I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

    Recommended reading:

    H5 C3 JS to achieve floor jumping special effects

    Usage of H5 link

    The above is the detailed content of Summary of common HTML attribute knowledge points. For more information, please follow other related articles on the PHP Chinese website!

    Statement
    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
    HTML超文本标记语言--超在那里?(文档分析)HTML超文本标记语言--超在那里?(文档分析)Aug 02, 2022 pm 06:04 PM

    本篇文章带大家了解一下HTML(超文本标记语言),介绍一下HTML的本质,HTML文档的结构、HTML文档的基本标签和图像标签、列表、表格标签、媒体元素、表单,希望对大家有所帮助!

    html和css算编程语言吗html和css算编程语言吗Sep 21, 2022 pm 04:09 PM

    不算。html是一种用来告知浏览器如何组织页面的标记语言,而CSS是一种用来表现HTML或XML等文件样式的样式设计语言;html和css不具备很强的逻辑性和流程控制功能,缺乏灵活性,且html和css不能按照人类的设计对一件工作进行重复的循环,直至得到让人类满意的答案。

    web前端笔试题库之HTML篇web前端笔试题库之HTML篇Apr 21, 2022 am 11:56 AM

    总结了一些web前端面试(笔试)题分享给大家,本篇文章就先给大家分享HTML部分的笔试题(附答案),大家可以自己做做,看看能答对几个!

    HTML5中画布标签是什么HTML5中画布标签是什么May 18, 2022 pm 04:55 PM

    HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

    总结HTML中a标签的使用方法及跳转方式总结HTML中a标签的使用方法及跳转方式Aug 05, 2022 am 09:18 AM

    本文给大家总结介绍a标签使用方法和跳转方式,希望对大家有所帮助!

    html5废弃了哪个列表标签html5废弃了哪个列表标签Jun 01, 2022 pm 06:32 PM

    html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

    html中document是什么html中document是什么Jun 17, 2022 pm 04:18 PM

    在html中,document是文档对象的意思,代表浏览器窗口的文档;document对象是window对象的子对象,所以可通过“window.document”属性对其进行访问,每个载入浏览器的HTML文档都会成为Document对象。

    html5支持boolean值属性吗html5支持boolean值属性吗Apr 22, 2022 pm 04:56 PM

    html5支持boolean值属性;boolean值属性指是属性值为true或者false的属性,如input元素中的disabled属性,不使用该属性表示值为flase,不禁用元素,使用该属性可以不设置属性值表示值为true,禁用元素。

    See all articles

    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 agoBy尊渡假赌尊渡假赌尊渡假赌
    Repo: How To Revive Teammates
    4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version

    Notepad++7.3.1

    Notepad++7.3.1

    Easy-to-use and free code editor

    Atom editor mac version download

    Atom editor mac version download

    The most popular open source editor

    WebStorm Mac version

    WebStorm Mac version

    Useful JavaScript development tools

    ZendStudio 13.5.1 Mac

    ZendStudio 13.5.1 Mac

    Powerful PHP integrated development environment