Blogger Information
Blog 10
fans 0
comment 0
visits 4864
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1021状态伪类与盒模型作业
onbind
Original
365 people have browsed it

盒模型

  1. <style>
  2. .box{
  3. /* 宽度等于100像素 */
  4. width: 100px;
  5. /* 高度等于100像素 */
  6. height: 100px;
  7. /* 1像素的红色实线边框 */
  8. /*
  9. 常用边框有以下
  10. dashed:虚线
  11. dotted:点线
  12. none: 无边框
  13. */
  14. border: 1px solid red;
  15. /* 页面中,宽高属性包含内容,内边距和边框,不包含外边距 */
  16. /* 也就是说:width = 内容 + border + padding; 高度同理*/
  17. box-sizing: border-box;
  18. /* 页面中,高度属性不包含内边距,边框,外边距,只包含内容 */
  19. /* 也就是说:width = 内容; 高度同理 */
  20. box-sizing: content-box;
  21. /* 外边距上下左右四个边距都为0 */
  22. margin: 0;
  23. /* 外边距上下为0;左右为15像素 */
  24. margin: 0 15px;
  25. /* 外边距上为0,左右为10像素,下为15像素 */
  26. margin: 0 10px 15px;
  27. /* 外边距上为0,右边10像素,下为15像素,左为20像素 */
  28. margin: 0 10px 15px 20px;
  29. /* padding为内边距,计算公式跟margin是一样的 */
  30. }
  31. </style>
  32. <div class="box"></div>

状态伪类

  1. <style>
  2. /* 设置所有input元素已禁用的背景颜色 */
  3. input:disabled{
  4. background-color: red;
  5. }
  6. /* 设置所有input元素内容非法的背景颜色 */
  7. input:invalid{
  8. background-color: green;
  9. }
  10. /* 设置所有已启用的input元素边框颜色 */
  11. input:enabled{
  12. border-color:#ffff00;
  13. border-width: 5px;
  14. }
  15. </style>
  16. <form action="">
  17. <input type="text" name="" id="" disabled>
  18. <input type="email" name="" id="" value="dsjidsji">
  19. </form>
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