<ol></ol>(块级元素):即ordered list。 <li></li>(块级元素):即list item。 <i></i>:即italic,斜体。 <b></b>:即bold,粗体。 <u></u>:即underline,下划线。 <dl></dl>,<dt></dt>,<dd></dd>:分别即description list,description term,description description,三者共同构成描述列表。一个术...
<acticle> 是一个独立的内容, 比如 product, post, 可以用 section 作为 product list 然后里面多个 article <aside> 可以放到 section, article, body 里, 表示和主题有关的其它内容, 比如 relate posts, products 等等. Semantic HTML Tag (细节类) <address> <blockquote> <q> = quote <cite> <details>...
具体的字符实体参考下列官方文档 MDN HTML Entity Referencehttps://html.spec.whatwg.org/multipage/named-characters.html#named-character-references 常用的几个实体字符 <a> href 属性: 跳转地址 锚链接 功能链接 (点击后触发某个功能:执行JS代码、发送邮件mailto、拨号tel) <a href="https://www.baidu.com"...
<td> 是table data cell 的缩写,单元格 <tr> 是table row 的缩写,表格中的一行 <th> 是table header cell 的缩写,表头单元格 常用HTML标签的英文全称及简单描述
1、无序列表(Unordered List)中项目的顺序并不重要,就像购物列表。用一个 <ul> 元素包围。 2、有序列表(Ordered List)中项目的顺序很重要,就像烹调指南。用一个 <ol> 元素包围。 列表的每个项目用一个列表项目(List Item)元素 <li> 包围。 比如,要将下面的段落片段改成一个列表: <p>艾编程是一个综合性...
The HTML ol Element (or HTML Ordered List Element) represents an ordered list of items. Typically, ordered-list items are displayed with a preceding numbering, which can be of any form, like numerals, letters or Romans numerals or even simple bullets. Th
(1)无序列表 Unordered List ul 表示无序列表的整体,用于包裹li标签 li 表示无序列表的每一项,用于包含每一行的内容 ul中只能包含li标签 li中可以包含任意内容 <ul> <b>fruit</b> <li>apple</li> <li>banana</li> <li>lemon</li> </ul> 无序列表 (2)有序列表 Ordered List <ol> <b>人物</b...
List item four List item two List item three List item four Ordered List (Nested) List item one -start at 8 List item one List item one -reversed attribute List item two List item three List item four List item two List item three ...
请参阅Louis Lazaris的[带有 start、type 和 value 属性 Reverse Ordered Listsforked。使用单选按钮选择...
3.8、列表(List) 3.9、链接 4、参考 1、Visual Code新建文件 emmmm…,一定是我的Visual Code打开方式不正确,在“”文件”栏目下没有新建项目,也没有新建文件夹,还有新建文件的时候,默认Untitled-1,还不能指定后缀,贴图为证;用惯了pycharm的我,对这个真的不会玩,应该是我的打开方式不正确,要不然平时还听别的...