0

0

HTML 5-块级元素

PHP中文网

PHP中文网

发布时间:2016-05-17 09:09:27

|

2001人浏览过

|

来源于php中文网

原创

HTML 5 还增加了一些纯语义性的块级元素:

  aside  figure   dialog

  我在文章和书中一直使用前两个元素。第三个元素我不经常用,它主要用于书面文本。

aside

  aside 元素代表说明、提示、边栏、引用、附加注释等,也就是叙述主线之外的内容。例如,在 developerWorks 文章中,常常会看到用表格形式编写的边栏,见代码3 用 HTML 4 编写的 developerWorks 边栏。

@@##@@

.xf-value

The .xf-value selector used here styles the input field value but not its label. This is actually inconsistent with the current CSS3 draft. The example really should use the ::value pseudo-class instead like so:

input::value { width: 20em; } 
#ccnumber::value { width: 18em }
#zip::value { width: 12em }
#state::value { width: 3em}

However, Firefox doesn't yet support this syntax. 

 在 HTML 5 中,可以按照更有意义的方式编写这个边栏,见代码4 用 HTML 5 编写的 developerWorks 边栏。