Blogger Information
Blog 12
fans 0
comment 0
visits 5777
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1021作业
PHP是世界上最好的语言
Original
375 people have browsed it

作业内容:

  1. 实例演示表单中常用的”状态伪类”, 尽量选择课堂上未提及的
  2. 实例演示盒模型的五个核心属性,并描述padding、margin的简记规则

状态伪类

选择器 功能描述
E:focused 选择表单中获得焦点的元素
E:checked 选择表单中被选中的radio或者checkbox元素
E:enabled 选择表单中可用的元素
E:disabled 选择表单中不可用(即被禁用)的元素
E:valid 选择表单中填写的内容符合要求的元素
E:invalid 选择表单中填写的内容不符合要求的元素,如非法的URL或E-Mail,或与 pattern 属性给出的模式不匹配
E:in-range 选择表单中输入的数字在有效范围内的元素
E:out-of-range 选择表单中输入的数字超出有效范围的元素
E:required 选择表单中必填的元素
E:optional 选择表单中允许使用required属性,且未指定为required的元素
E:read-only 选择表单中状态为只读的元素
E:read-write 选择表单中状态为非只读的元素
E:default 选择表单中默认处于选取状态的单选框或复选框,即使用户将该单选框或复选框控件的选取状态设定为非选取状态,E:default选择器中指定的样式仍然有效
E:indeterminate 选择器表单中一组单选框中没有任何一个单选框被选取时整组单选框的样式,如果用户选取了其中任何一个单选框,则该样式被取消指定

html

  1. <form action="">
  2. <fieldset>
  3. <legend>用户注册</legend>
  4. <!-- ? autofocus: 布尔属性,自动获取焦点 -->
  5. <input type="text" id="username" name="username" placeholder="用户名" required autofocus />
  6. <input type="email" id="email" name="email" placeholder="邮箱" required />
  7. <input type="password" id="password" name="password" placeholder="密码" required readonly/>
  8. <!-- ? 复选框默认是选中状态: checked -->
  9. <div>
  10. <input type="checkbox" id="rem" name="remember" checked />
  11. <label for="rem">记住我</label>
  12. </div>
  13. <button>提交</button>
  14. </fieldset>
  15. </form>

:invalid

  1. input:invalid {
  2. background-color: red;
  3. }

效果


:read-only

  1. input:read-only {
  2. background-color: red;
  3. }

效果


:required

  1. input:required {
  2. background-color: red;
  3. }

效果

盒模型的五朵金花

盒模型五个核心属性:

  1. width: 宽度
  2. height: 高度
  3. padding: 内边距
  4. border: 边框
  5. margin: 外边距

html

  1. <div class="box1"></div>
  2. <div class="box2"></div>

css

  1. .box1 {
  2. width: 100px;
  3. height: 100px;
  4. padding: 10px;
  5. border: 2px solid red;
  6. margin: 10px;
  7. box-sizing: border-box;
  8. background-clip: content-box;
  9. background-color: yellow;
  10. }
  11. .box2 {
  12. margin: 20px;
  13. width: 200px;
  14. height: 200px;
  15. padding: 20px;
  16. border: 2px dashed red;
  17. background-clip: content-box;
  18. background-color: aqua;
  19. }

效果和解释

两个div,中间颜色填充的部分是content区域,最外层的红色实线和虚线是border,由border属性控制。border和content之间的空白处是padding。


第一个div,由于设置了box-sizing: border-box;,width/height属性值是content区域的width/height+左右/上下padding+左右/上下border。因此content的width/height=100-20-4=76。


第二个div,由于没有设置box-sizing: border-box;,width和height属性设置的是content区域的width和height。因此,审查元素时,显示的是content的widht/height(200) + 左右/上下padding(40) + 左右/上下border(4) = 244.

简记规则

  1. /* 盒模型属性的顺序 */
  2. /* 顺时针方向 */
  3. .box {
  4. /* 边框是可视属性,除了宽高, 还可以设置样式, 颜色 */
  5. border: 5px dashed red;
  6. /* 如果同时设置四个方向,而四个方向值各不相同,则必须全部写齐了 */
  7. /* 规则顺序: 上,右,下,左, 就是手表的顺时针 */
  8. /* 四值: 上, 右, 下, 左 */
  9. padding: 5px 10px 15px 20px;
  10. /* 三值: 上, 左右, 下 */
  11. padding: 5px 10px 15px;
  12. /* 双值: 上下, 左右 */
  13. padding: 5px 10px;
  14. /* 单值: 上下左中全相等 */
  15. padding: 10px;
  16. /* 三值,双值记忆方法: 只要出现在第二个参数位置上,就必然代表"左右" */
  17. /* margin 的规则 padding 是一样的 */
  18. /* border 是不存在以上的简化缩写 */
  19. }

四值: 上, 右, 下, 左
三值: 上, 左右, 下
双值: 上下, 左右
单值: 上下左中全相等
三值、双值记忆方法: 只要出现在第二个参数位置上,就必然代表”左右”

Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:完成的非常好,条理清晰,功能完整。继续加油
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post