04 2016 档案

摘要:1、css选择器 通用选择器 * {} 类型选择器 h1 {} 类选择器 .note {} p.note{} ID选择器 #introduction {} 子元素选择器 li>a {} 后代选择器 p>a {} 相邻兄弟选择器 h1+p {} 普通兄弟选择器 h1~p {} 具体性原则 就近原则 重 阅读全文
posted @ 2016-04-27 11:57 dddw 阅读(179) 评论(0) 推荐(1)
摘要:1、figure 用于图片+图片描述 <figure> <img src="1.jpg"> alt="eueu"> <br/> <figcaption>fehbiguojethk,l;. cgvbhjmk,l uhjkm,</figcaption> </figure> 2、表单数据传输方式 get: 阅读全文
posted @ 2016-04-27 11:56 dddw 阅读(170) 评论(0) 推荐(0)
摘要:1、表单处理 <!DOCTYPE HTML> <html> <meta Charset="utf-8"> <body> <form action="get.php" method="get"> 姓名:<input type="text" name="name"><br> 电邮:<input type 阅读全文
posted @ 2016-04-20 15:33 dddw 阅读(181) 评论(0) 推荐(0)
摘要:1、创建数组赋值的几种方法 (1)$addresses[0] = "spam@cyberpromo.net"; $addresses[1] = "abuse@example.com" $addresses[2] = "root@example.com" (2)$addresses = array(" 阅读全文
posted @ 2016-04-19 14:30 dddw 阅读(132) 评论(0) 推荐(0)