Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Media Query Exercise</title>
  5. <style id="jsbin-css">
  6. @media screen and (min-width: 400px) {
  7. .media-container {
  8. color: red;
  9. }
  10.  
  11. .blue, .green {
  12. display: none;
  13. }
  14. }
  15.  
  16. @media screen and (min-width: 450px) {
  17. .media-container {
  18. color: blue;
  19. }
  20.  
  21. .green, .red {
  22. display: none;
  23. }
  24.  
  25. .blue {
  26. display: inline;
  27. }
  28. }
  29.  
  30. @media screen and (min-width: 500px) {
  31. .media-container {
  32. color: green;
  33. }
  34.  
  35. .blue, .red {
  36. display: none;
  37. }
  38.  
  39. .green {
  40. display: inline;
  41. }
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <div class="media-container">My color is
  47. <span class="red">red</span>
  48. <span class="blue">blue</span>
  49. <span class="green">green</span>
  50. </div>
  51.  
  52.  
  53. <script id="jsbin-source-css" type="text/css">@media screen and (min-width: 400px) {
  54. .media-container {
  55. color: red;
  56. }
  57.  
  58. .blue, .green {
  59. display: none;
  60. }
  61. }
  62.  
  63. @media screen and (min-width: 450px) {
  64. .media-container {
  65. color: blue;
  66. }
  67.  
  68. .green, .red {
  69. display: none;
  70. }
  71.  
  72. .blue {
  73. display: inline;
  74. }
  75. }
  76.  
  77. @media screen and (min-width: 500px) {
  78. .media-container {
  79. color: green;
  80. }
  81.  
  82. .blue, .red {
  83. display: none;
  84. }
  85.  
  86. .green {
  87. display: inline;
  88. }
  89. }</script>
  90. </body>
  91. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement