7.轮廓.html 972 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>Document</title>
  7. <style>
  8. input {
  9. /* border:none; */
  10. outline: none;
  11. outline: 3px solid red;
  12. outline-width: 1px;
  13. outline-style: dashed;
  14. outline-color: aqua;
  15. }
  16. .aa {
  17. width: 700px;
  18. height: 700px;
  19. background: #ff0;
  20. margin: 0 auto;
  21. }
  22. .one {
  23. width: 200px;
  24. height: 200px;
  25. /* 已知宽高的盒子在它的 父级内居中 */
  26. background: red;
  27. margin: 0 auto;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <!--
  33. 轮廓:outline
  34. border 边框
  35. -->
  36. <div class="aa">
  37. <div class="one"></div>
  38. </div>
  39. <!-- <input type="text"> -->
  40. </body>
  41. </html>