example_of_css_3.html 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>CSS - 盒子模型</title>
  6. <style>
  7. @font-face {
  8. font-family: "FatDog";
  9. src: url('fonts/chunkfive.ttf');
  10. }
  11. body {
  12. width: 960px;
  13. margin: 0 auto;
  14. }
  15. .ms {
  16. letter-spacing: 10px;
  17. width: 320px;
  18. height: 100px;
  19. border: 5px dotted gray;
  20. line-height: 100px;
  21. text-align: center;
  22. margin: 10px auto;
  23. text-decoration: underline;
  24. text-shadow: 2px 2px gray;
  25. font-size: 400%;
  26. }
  27. .one {
  28. text-indent: 60px;
  29. }
  30. .two {
  31. text-indent: 40px;
  32. }
  33. .three {
  34. text-indent: 20px;
  35. }
  36. h3 {
  37. /* block / inline-block / none */
  38. /* display: none; */
  39. visibility: hidden;
  40. text-transform: uppercase;
  41. font: italic bolder 2cm/60px "FatDog";
  42. /* font-size: 2cm;
  43. font-family: "FatDog";
  44. font-stretch: condensed;
  45. font-style: oblique; */
  46. }
  47. .box {
  48. color: rgb(64, 128, 192);
  49. height: 220px;
  50. border: 4px double #00CC33;
  51. border-left-color: blue;
  52. border-right-color: red;
  53. border-radius: 10px 20px 40px 80px;
  54. width: 50%;
  55. margin: 50px auto;
  56. margin-top: 10px;
  57. text-align: center;
  58. background-color: #749ABE;
  59. background-image: url(images/bird.gif);
  60. /* background-repeat: no-repeat no-repeat;
  61. background-position: -25px -50px; */
  62. }
  63. .box p {
  64. background-color: white;
  65. width: 200px;
  66. height: 40px;
  67. line-height: 40px;
  68. margin: 10px auto;
  69. }
  70. #photo {
  71. border: 10px solid gold;
  72. border-radius: 60px 60px 60px 60px;
  73. /* border-image: url("images/dots.gif") 10 10 10 10 round; */
  74. }
  75. #icon {
  76. width: 100px;
  77. height: 100px;
  78. background: url(images/icons.jpg) no-repeat no-repeat -570px -280px;
  79. background-color: #00FFFF;
  80. /* background-image: url(images/icons.jpg);
  81. background-repeat: no-repeat no-repeat;
  82. background-position: -570px -280px; */
  83. }
  84. #python {
  85. width: 290px;
  86. height: 82px;
  87. background-image: url(images/python-logo.png);
  88. background-color: #009966;
  89. }
  90. /* body {
  91. background-image: url(images/bird.gif);
  92. } */
  93. </style>
  94. </head>
  95. <body>
  96. <div id="python"></div>
  97. <div id="icon"></div>
  98. <img id="photo" src="images/tim.png" width="100" height="100">
  99. <h3>Hello, world!</h3>
  100. <h1 class="ms">静夜思</h1>
  101. <hr>
  102. <div class="box">
  103. <p class="one">床前明月光</p>
  104. <p class="two">疑似地上霜</p>
  105. <p class="three">举头望明月</p>
  106. <p class="four">低头思故乡</p>
  107. </div>
  108. </body>
  109. </html>