一.语义化元素 1. ul标签 W3C草案: The ul element represents an unordered list of items; that is, a list in which changing the order of the items would not change the meaning of list.W3C specification 语义化<ul>元素:表示包含一组无序列表项内容. 在不同的浏览器默认样式均有所不同: 列表项有一些特定的CSS…
Html ul.dl.ol 标签 <html> <body> <!-- ul 标签指定字符断点,左边带一个“·”点--> <ul> <!-- li 收入内容显示并被其他标签转换--> <li>内容</li> <li>内容</li> </ul> <!-- ol 标签指定字符排序断点,按照顺序数字排列--> <ol> <!-- li 收入内容显示并被其他标签转换…