Blogger Information
Blog 8
fans 0
comment 0
visits 4220
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表单+选择器权重计算+上下文选择器
deathpool
Original
402 people have browsed it

用户注册表单

效果图:

代码:

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. <style>
  9. div {
  10. margin-top: 50px;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <!-- * form标签属性: -->
  16. <!-- action:运行脚本的地址 -->
  17. <!-- method:提交方式 :1. POST 2.get -->
  18. <!-- post:数据不在url中,数据安全,可发送大量数据,例如文件夹 -->
  19. <!-- get:数据在url中,数据不安全,适合少量数据的发送,文件大小不超过4K -->
  20. <!--* onsubmit 事件在提交表单时发生。 -->
  21. <!-- ! input标签属性 -->
  22. <!-- required :input标签中的文本框不可为空 -->
  23. <!-- autofocus :使此文本框为焦点,只能有一个 -->
  24. <!-- placeholder:文本框提示文本,输入时会消失 -->
  25. <!-- value:文本框文本值,表单提交时的会提交此数据 -->
  26. <!-- checked是布尔属性,不需要值,只要存在就是true,用于表单单选按钮的默认选项 -->
  27. <!-- 单选按钮中的name 属性必须保持一样,才能保证返回唯一值 -->
  28. <!-- 复选按钮中的name中的hobby[]是数组,用于存储多种类型的数据,供后端调用 -->
  29. <!-- * 下拉列表(select) -->
  30. <!-- selected下拉列表的默认选项代码 -->
  31. <!-- * 自定义下拉列表 -->
  32. <!-- datalist+input -->
  33. <!-- selected下拉列表的默认选项代码 -->
  34. <!-- datalist标签的id 属性必须与Input标签的list属性及相关绑定 -->
  35. <!-- 单行文本框 -->
  36. <form action="php.php" method="POST">
  37. <fieldset>
  38. <legend>用户注册必填项</legend>
  39. <label for="user">账号:</label>
  40. <input type="text" id="user" required autofocus placeholder="请输入用户名"><br>
  41. <label for="password">密码:</label>
  42. <input type="password" id="password" name="password" required placeholder="请输入密码"><br>
  43. <label for="email">邮箱:</label>
  44. <input type="email" id="email" name="email" required placeholder="请输入邮箱"><br>
  45. </fieldset>
  46. <fieldset style="margin-top: 50px;">
  47. <legend>用户注册选填项</legend>
  48. <!-- * 单选按钮 -->
  49. <!-- 单选按钮中的name 属性必须保持一样,才能保证返回唯一值 -->
  50. <label for="default">性别:</label>
  51. <label for="man">男:</label>
  52. <input type="radio" id="man" name="gender">
  53. <label for="woman"> 女:</label>
  54. <input type="radio" id="woman" name="gender">
  55. <label for="default">保密:</label>
  56. <input type="radio" id="default" name="gender" checked><br>
  57. <div>
  58. <!-- * 复选按钮 -->
  59. <!-- 复选框中的name 属性必须保持一样,才能保证返回唯一值 -->
  60. <!-- 复选按钮中的name中的hobby[]是数组,用于存储多种类型的数据,供后端调用 -->
  61. <label>爱好:</label>
  62. <label for="game">游戏:</label>
  63. <input type="checkbox" id="game" name="hobby[]" checked>
  64. <label for="movie">电影:</label>
  65. <input type="checkbox" id="movie" name="hobby[]">
  66. <label for="travel">旅游:</label>
  67. <input type="checkbox" id="travel" name="hobby[]"><br>
  68. </div>
  69. <div>
  70. <!-- * 下拉列表 -->
  71. <!-- selected下拉列表的默认选项代码 -->
  72. <span>想学习的知识:</span>
  73. <select name="grammar">
  74. <option value="1" selected>PHP</option>
  75. <option value="2">JAVASCRIPT</option>
  76. <option value="3">CSS</option>
  77. <option value="4">HTML</option>
  78. </select>
  79. </div>
  80. <div>
  81. <!-- * 自定义下拉列表 -->
  82. <!-- datalist+input -->
  83. <!-- selected下拉列表的默认选项代码 -->
  84. <!-- datalist标签的id 属性必须与Input标签的list属性及相关绑定 -->
  85. <label for="in"><span>搜索关键字:</span></label>
  86. <input type="search" id="in" name="search" list="keywords">
  87. <datalist id="keywords">
  88. <option value="PHP" selected>PHP</option>
  89. <option value="JAVASCRIPT">JAVASCRIPT</option>
  90. <option value="CSS">CSS</option>
  91. <option value="HTML">HTML</option>
  92. </datalist>
  93. </div>
  94. </fieldset>
  95. <input style="width: 100%;" type="submit" value="提交">
  96. <input style="width: 100%;" type="reset" value="重置">
  97. </form>
  98. </body>
  99. </html>

选择器权重的计算

css样式优先级:!important>style>id>class>tag(标签选择器)

注:!important:用于css样式代码后面,提升样式代码为最优先级(主要用于调试,开发不使用)

  • 第一等:代表内联样式,如: style=””,权值为1000。
  • 第二等:代表ID选择器,如:#content,权值为0100。
  • 第三等:代表类,伪类和属性选择器,如.content,权值为0010。
  • 第四等:代表类型选择器和伪元素选择器,如div p,权值为0001。
  • 通配符、子选择器、相邻选择器等的。如*、>、+,权值为0000。继承的样式没有权值。

例子:

  • 内联样式,如: style=”p{}”,权值为1000。
  • #p{}的权值为0100
  • .p{}的权值为0010
  • p{}的权值为0001
    总结:权值越大优先级越高
    优先级为:style=”p{}”>#p{}>.p{}>p{}——->(1000>0100>0010>0001)

权值的计算

h1{}的权值为0001
p{}的权值为0001
则:
h1 p{}的权值为0002


.h1{}的权值为0010
p{}的权值为0001
则:
.class p{}的权值为0011


h1 p{}的权值为0002
.class p{}的权值为0011
则:
.h1 h1 p{}的权值为0012


上下文选择器(相邻兄弟选择器)

  • 使用:如果需要选择紧接在另一个元素后的元素,而且二者有相同的父元素,可以使用相邻兄弟选择器

效果:

例子:
css代码:
li+li {font-weight: bold;}
html代码:

  1. <div>
  2. <ul>
  3. <li>List item 1</li>
  4. <li>List item 2</li>
  5. <li>List item 3</li>
  6. </ul>
  7. <ul>
  8. <li>List item 1</li>
  9. <li>List item 2</li>
  10. <li>List item 3</li>
  11. </ul>
  12. </div>
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