标签:style blog color io ar sp div 2014 art
1. 关于编程习惯。 在查看网页源代码时(推荐firefox配置的firebug),良好的编程习惯可以让我们对代码结构有一个更好的了解,在读懂别人的代码或者debug的时候更能找到问题所在。
<!DOCTYPE html> <html> //sheng <head> <meta charset = "UTF-8"> <title>HelloWorld!</title> <script>...</script> ... </head> <body> ... </body> <html>
2.basic expressions
#contentEditable:全局属性,允许用户编辑元素里面的内容
<textarea contentEditable=true></contentEditable>
#spellcheck:针对type=text和textarea这两个文本输入框的一个新属性,对文本内容进行拼写和语法检查
<textarea spellcheck=true></contentEditable>
#article:页面中独立于其它元素存在的内容,比如报纸中的一篇文章,一篇论坛帖子等等,可以用header表示标题,footer表示脚注,section表示分段
<body> <article> <header> <h1>宫崎骏</h1> <p>发表日期 <time pubdate datetime="09/10/2014">09/10/2014</time> </p> </header> <p>我最喜欢的漫画家</p></p> <section> <h3>Top1</h3> <p>天空之城</p> </section> <section> <h3>Top2</h3> <p>千与千寻</p> </section> </article> </body>
#nav:页面导航,可链接
<body> <h1>宫崎骏</h1> <nav> <ul> <li><a href="#">天空之城</a></li> <li><a href="#">千与千寻</a></li> </ul> </nav> </body>
标签:style blog color io ar sp div 2014 art
原文地址:http://www.cnblogs.com/includeFiona/p/4031696.html