w3school: http://www.w3school.com.cn/
runoob: http://www.runoob.com/
html tag reference manual: http://www.runoob.com/tags/html-reference.html
html color name: http://www.runoob.com/tags/html-colorname.html
Online tool: http://tool.oschina.net/
ProcessOn: https://www.processon.com/
Commonly used to combine inline elements so that they can be changed via css styles
Commonly used to combine block-level elements in order to change them through css styles Commonly used to display a line of computer source code, the text within the label will be displayed in a fixed-width font</span></p>
<p><span style="font-size: 13px;">Commonly used to display multi-line computer source code. The text within the label will be displayed in a fixed-width font, and spaces and line breaks will be retained</span></p>
<p><span style="font-size: 13px;"> </span></p>
<p><span style="font-size: 13px;"><span style="line-height: 20.5263px; background-color: #ffff99;">Global properties</span></span></p>
<p><span style="font-size: 13px;"><span style="background-color: #ffff99;">accesskey</span></span></p>
<p><span style="font-size: 13px;">Set shortcut keys, usage: alt + value</span></p>
<div class="cnblogs_code">
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><span style="font-size: 13px;"><span style="color: #0000ff;"><</span><span style="color: #800000;">a </span><span style="color: #ff0000;">href</span><span style="color: #0000ff;">="http://www.taobao.com"</span><span style="color: #ff0000;"> accesskey</span><span style="color: #0000ff;">="t"</span><span style="color: #0000ff;">></span>淘宝<span style="color: #0000ff;"></</span><span style="color: #800000;">a</span><span style="color: #0000ff;">></span>
<span style="color: #0000ff;"><</span><span style="color: #800000;">a </span><span style="color: #ff0000;">href</span><span style="color: #0000ff;">="http://www.jd.com"</span><span style="color: #ff0000;"> accesskey</span><span style="color: #0000ff;">="j"</span><span style="color: #0000ff;">></span>京东<span style="color: #0000ff;"></</span><span style="color: #800000;">a</span><span style="color: #0000ff;">></span></span>
Elements that support accesskey attributes: , ,
contenteditable
Specify whether the content of the element is editable. When the contenteditable attribute is not set in the element, the element will inherit from the parent element
true: The specified element is editable
false: The specified element is not editable
<span style="font-size: 13px;"><span style="color: #0000ff;"><</span><span style="color: #800000;">div </span><span style="color: #ff0000;">contenteditable</span><span style="color: #0000ff;">></span> <span style="color: #0000ff;"><</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span>这是一个可编辑段落。<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #0000ff;"></</span><span style="color: #800000;">div</span><span style="color: #0000ff;">></span></span>
hidden
It is stipulated to hide elements. The hidden attribute can be set so that users can only see an element when certain conditions are met. Then JavaScript can be used to delete the hidden attribute to make the element visible
<span style="font-size: 13px;"><span style="color: #0000ff;"><</span><span style="color: #800000;">p </span><span style="color: #ff0000;">hidden</span><span style="color: #0000ff;">></span>这是一段隐藏的段落。<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span></span>
lang
Specifies the language of the element content,
Language code reference manual: http://www.runoob.com/tags/html-language-codes.html
spellcheck
Specifies whether to spell check the element content
Spell check for the following text:
The value in the input element of type text (not password)
The value in the textarea element
Values in editable elements
true: Specifies that the text of the element should be spell checked
false: Specifies that the text of the element should not be spell checked
<span style="font-size: 13px;"><span style="color: #0000ff;"><</span><span style="color: #800000;">p </span><span style="color: #ff0000;">contenteditable</span><span style="color: #0000ff;">="true"</span><span style="color: #ff0000;"> spellcheck</span><span style="color: #0000ff;">="true"</span><span style="color: #0000ff;">></span>这是可编辑的段落,请试着编辑文本。<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span></span>
tabindex
Specifies the order of elements when using the tab key to navigate
<span style="font-size: 13px;"><span style="color: #0000ff;"><</span><span style="color: #800000;">p </span><span style="color: #ff0000;">tabindex</span><span style="color: #0000ff;">="2"</span><span style="color: #0000ff;">></span>W3CSchool<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #0000ff;"><</span><span style="color: #800000;">p </span><span style="color: #ff0000;">tabindex</span><span style="color: #0000ff;">="1"</span><span style="color: #0000ff;">></span>Google<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span> <span style="color: #0000ff;"><</span><span style="color: #800000;">p </span><span style="color: #ff0000;">tabindex</span><span style="color: #0000ff;">="3"</span><span style="color: #0000ff;">></span>Microsoft<span style="color: #0000ff;"></</span><span style="color: #800000;">p</span><span style="color: #0000ff;">></span></span>
title
Specifies additional information about the element
<span style="font-size: 13px;"><span style="color: #0000ff;"><</span><span style="color: #800000;">abbr </span><span style="color: #ff0000;">title</span><span style="color: #0000ff;">="世界卫生组织"</span><span style="color: #0000ff;">></span>WHO<span style="color: #0000ff;"></</span><span style="color: #800000;">abbr</span><span style="color: #0000ff;">></span>成立于1948。</span>