2020年7月31日

html input的认识

摘要: input的类型: 1、text 文本框 2、password 密码框 3、radio 单选框 4、checkbox 复选框 5、button 普通按钮 6、submit 提交按钮 7、reset 重置按钮 8、image 图像按钮 9、file 文件按钮 代码演示 <!DOCTYPE html> 阅读全文

posted @ 2020-07-31 23:08 一窝端 阅读(264) 评论(0) 推荐(0)

html的表格

摘要: 1、tr为行,td为列,th表头 2、表格属性width宽度、height高度、border边的大小、cellspacing为各单元的空隙,cellpadding为文本内容到边框的之间的空隙 3、表格结构标签thead和tbody 4、colspan="2"合并2单元为一单元,在td中使用borde 阅读全文

posted @ 2020-07-31 22:54 一窝端 阅读(71) 评论(0) 推荐(0)

html中的有序列表/无序列表/自定义列表

摘要: 有序列表ol使用方式 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <titl 阅读全文

posted @ 2020-07-31 22:15 一窝端 阅读(558) 评论(0) 推荐(0)

导航