博客列表 >form表单、iframe框架、css优先级

form表单、iframe框架、css优先级

以前真好
以前真好原创
2022年03月19日 13:59:22582浏览

form表单

  1. <style>
  2. form{
  3. width: 500px;
  4. }
  5. form .item{
  6. margin: 20px auto 0;
  7. width: 300px;
  8. margin-top: 20px;
  9. }
  10. button{
  11. display: block;
  12. margin: 50px auto 0;
  13. color: #fff;
  14. width: 100px;
  15. height: 40px;
  16. background: rgb(88 174 245);
  17. border: none;
  18. outline: none;
  19. border-radius: 5px;
  20. }
  21. label{
  22. display: inline-block;
  23. width: 90px;
  24. font-size: 16px;
  25. }
  26. input{
  27. height: 40px;
  28. border-radius: 5px;
  29. border: 1px solid #eee;
  30. outline: none
  31. }
  32. </style>
  33. <form action="" method="post">
  34. <div class="item">
  35. <label for="username">用户名:</label>
  36. <input type="text" id="username" required>
  37. </div>
  38. <div class="item">
  39. <label for="password">密码:</label>
  40. <input type="password" id="password" required>
  41. </div>
  42. <div class="item">
  43. <label for="my-email">邮箱:</label>
  44. <input type="email" id="my-email" required>
  45. </div>
  46. <button type="submit">登陆</button>
  47. </form>

iframe框架

  1. <style>
  2. .my-iframe{
  3. width: 1000px;
  4. }
  5. .my-top{
  6. height: 80px;
  7. line-height: 80px;
  8. padding-left: 20px;
  9. font-size: 18px;
  10. border: 1px solid black;
  11. }
  12. .flex{
  13. display: flex;
  14. }
  15. .left{
  16. width: 200px;
  17. height: 500px;
  18. border: 1px solid black;
  19. border-top: none;
  20. }
  21. .left ul li{
  22. list-style: none;
  23. }
  24. .left a{
  25. color: rgb(105, 102, 102);
  26. text-decoration: none;
  27. display: block;
  28. margin-bottom: 20px;
  29. }
  30. .right iframe{
  31. width: 800px;
  32. height: 500px;
  33. border: 1px solid black;
  34. border-top: none;
  35. border-left: none;
  36. }
  37. </style>
  38. <div class="my-iframe">
  39. <div class="my-top">
  40. 某某网站后台管理系统
  41. </div>
  42. <div class="flex">
  43. <div class="left">
  44. <ul>
  45. <li><a href="https://www.ifeng.com/" target="my-iframe">凤凰网首页</a></li>
  46. <li><a href="https://flive.ifeng.com/" target="my-iframe">凤凰网直播</a></li>
  47. <li><a href="https://gov.ifeng.com/" target="my-iframe">凤凰网政务</a></li>
  48. <li><a href="https://sports.ifeng.com/" target="my-iframe">凤凰网体育</a></li>
  49. </ul>
  50. </div>
  51. <div class="right">
  52. <iframe src="https://www.ifeng.com/" name="my-iframe" frameborder="1"></iframe>
  53. </div>
  54. </div>
  55. </div>

css优先级演示

  1. <style>
  2. .item1{
  3. color: red;
  4. }
  5. .item1 #a2{
  6. color: black;
  7. }
  8. .item1 .a1{
  9. color: blue;
  10. }
  11. .a3{
  12. color: coral !important;
  13. }
  14. </style>
  15. <!-- ?优先级演示 -->
  16. <div class="item1">
  17. <span>子元素会继承父元素的颜色</span>
  18. </div>
  19. <div class="item1">
  20. <span id="a2" class="a1" >子元素设置的颜色优先级高于父元素的颜色继承</span>
  21. </div>
  22. <div class="item1">
  23. <span class="a1" >子元素id设置的颜色高于class和父元素继承的颜色</span>
  24. </div>
  25. <div class="item1">
  26. <span class="a1" style="color:yellow;">子元素设置内联样式的颜色高于class颜色设定</span>
  27. </div>
  28. <div class="item1">
  29. <span class="a3" style="color:yellow;">设置 !important权重的样式级别最高 覆盖所有设置的颜色</span>
  30. </div>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议