宗策

导航

2020年4月22日 #

CSS选择器

摘要: 1. 标签名选择器- 通过标签的名称选取页面中所有同名的元素- 格式: div{ 样式代码 } <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <style type="tex 阅读全文

posted @ 2020-04-22 16:33 宗策 阅读(131) 评论(0) 推荐(0) 编辑

CSS三种引入方式

摘要: CSS- Cascading Style Sheet:层叠样式表,用于美化页面的。CSS的引入方式:1. 内联样式:直接在元素的style属性中添加样式代码,不能复用 <h1 style="color: red">灭霸</h1> 2. 内部样式:在head标签中添加style标签在标签体内写样式代码 阅读全文

posted @ 2020-04-22 16:21 宗策 阅读(191) 评论(0) 推荐(0) 编辑

创建表单<form></form>

摘要: 表单form- action 提交地址 - 各种控件: 1. 文本框 type=text name value maxLength readonly placeholder 2. 密码框 password name 3. 单选 radio name value checked id label 4. 阅读全文

posted @ 2020-04-22 09:40 宗策 阅读(555) 评论(0) 推荐(0) 编辑