好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

HTML文档html,html5,css,css3_html/css_WEB-ITnose

HTML 各种标签及简单应用:

http://www.w3school.com.cn 

 1 

2 3 横线 4

   保留了标签内的空格和换行 5  Computer code  6 
7 Keyboard input 8
9 Teletype text 10
11 Sample text 12
13 Computer variable 14
15 地址 16 显示缩略词etc. 17 WWW 18 19 删除 20 插入 21 加粗 22 加重语气 23 斜体 24 小字体 25 加引号26 长引用 27 链接在新的窗口打开 28 %20 代替空格号

 1  空格  2   标题  3          4    内边距   5     外边距 6 bgcolor="red"  background=""   7     above below  hsides(上和下)   vsides  (左和右)  8      无序列表 左边有黑原点 9     左边有序号从50开始   10         11 27  28      29      30      31  实现在一个页面内垂直展示三个页面内容?------网页32  33      34      35          html5不支持了36  实现在一个页面内水平展示三个页面内容37 内嵌的38   里面的显示不支持Js的文本39  40      41      42  43 44 45   

 1   2 #div1, #div2 3 {float:left; width:100px; height:35px; margin:10px;padding:10px;border:1px solid #aaaaaa;} 4   5   6 function allowDrop(ev) 7 { 8 ev.preventDefault(); 9 }10 11 function drag(ev)12 {13 ev.dataTransfer.setData("Text",ev.target.id);14 }15 16 function drop(ev)17 {18  19 var data=ev.dataTransfer.getData("Text");20 ev.target.appendChild(document.getElementById(data));21 }22  23  24  25 26 

27 28

查看更多关于HTML文档html,html5,css,css3_html/css_WEB-ITnose的详细内容...

  阅读:25次