Blogger Information
Blog 29
fans 0
comment 0
visits 19777
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
能力怎么增长?在火车上也要写1011号作业
牡丹飞
Original
477 people have browsed it

1.效果



2.代码


  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>简写与相对单位</title>
  7. </head>
  8. <style>
  9. table {
  10. border: 0.3rem solid black;
  11. width: 100%;
  12. }
  13. .div1 {
  14. background-color: teal;
  15. padding: 1em;
  16. }
  17. .div2 {
  18. background-color: thistle;
  19. padding: 1em 2em;
  20. }
  21. .div3 {
  22. background-color: tomato;
  23. padding: 1em 2em 3em;
  24. }
  25. .div4 {
  26. background-color: turquoise;
  27. padding: 1em 2em 3em 4em;
  28. }
  29. </style>
  30. <body>
  31. <div class="div1">
  32. <table>
  33. <tr>
  34. <th>div1层padding: 1em;</th>
  35. <th>border: 0.3rem solid black; width: 100%;</th>
  36. </tr>
  37. </table>
  38. <div class="div2">
  39. <table>
  40. <tr>
  41. <th>div2层padding: 1em 2em;</th>
  42. <th>border: 0.3rem solid black; width: 100%;</th>
  43. </tr>
  44. </table>
  45. <div class="div3">
  46. <table>
  47. <tr>
  48. <th>div3层padding: 1em 2em 3em;</th>
  49. <th>border: 0.3rem solid black; width: 100%;</th>
  50. </tr>
  51. </table>
  52. <div class="div4">
  53. <table>
  54. <tr>
  55. <th>div4层padding: 1em 2em 3em 4em;</th>
  56. <th>border: 0.3rem solid black; width: 100%;</th>
  57. </tr>
  58. </table>
  59. </div>
  60. </div>
  61. </div>
  62. </div>
  63. </body>
  64. </html>

3.总结


简写实际上中多个属性写到一块儿
em rem % 是为了多设备都可以访问,灵活编程,找了个默认字体大小作为基础,来实现相对单位。

谢谢,老师!


Correcting teacher:天蓬老师天蓬老师

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