Blogger Information
Blog 19
fans 0
comment 0
visits 5760
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
媒体查询实例(手机为先)
vbokok
Original
316 people have browsed it
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>媒体查询</title>
  8. </head>
  9. <body>
  10. <button class="btn small">btn1</button>
  11. <button class="btn middle">btn2</button>
  12. <button class="btn large">btn3</button>
  13. </body>
  14. </html>
  15. <style>
  16. html {
  17. font-size: 0.625rem;
  18. }
  19. .btn {
  20. background-color: rebeccapurple;
  21. color: white;
  22. border: none;
  23. outline: auto;
  24. }
  25. .btn:hover {
  26. cursor: pointer;
  27. opacity: 0.7;
  28. transition: 0.4s;
  29. }
  30. .btn.small {
  31. font-size: 1.4rem;
  32. }
  33. .btn.middle {
  34. font-size: 1.8rem;
  35. }
  36. .btn.large {
  37. font-size: 2.2rem;
  38. }
  39. @media (max-width: 375px) {
  40. html{
  41. font-size: 14px;
  42. }
  43. }
  44. @media (min-width: 375px) and (max-width: 600px) {
  45. html{
  46. font-size: 17px;
  47. }
  48. }
  49. @media (min-width: 600px) {
  50. html{
  51. font-size: 20px;
  52. }
  53. }
  54. </style>

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