媒体查询的两种方式
第一种:link的方式:
1 <link rel="stylesheet" media="screen and (max-width:600px)" href="./css/blue.css"> 2 <link rel="stylesheet" media="screen and (min-width:900px)" href="./css/red.css"> 3 <link rel="stylesheet" media="screen and (min-width:1200px)" href="./css/yellow.css">
第二种:css的方式:
<style> @media screen and (max-width:600px) { body { background-color: blue; } } @media screen and (min-width:900px) { body { background-color: red; } } @media screen and (min-width:1200px) { body { background-color: yellow; } } </style>
一辈子很短,努力的做好两件事就好;第一件事是热爱生活,好好的去爱身边的人;第二件事是努力学习,在工作中取得不一样的成绩,实现自己的价值,而不是仅仅为了赚钱;