老师在下面的案例中为啥用媒体查询控制宽度,无论在pc端,还是在移动端都不可以呢
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
*{
padding:0;
margin:0;
}
ul li{
list-style: none;
}
header{
width: 100%;
background: black;
display: flex;
justify-content: space-around;
}
.logo{
display: flex;
justify-content: flex-start;
align-items: center;
}
.logo img{
flex-basis: 80px;
}
.nav{
color:#fff;
display: flex;
justify-content: space-around;
align-items: center;
}
.nav li{
width:120px;
font-size: 30px;
}
.login{
width: 150px;
height: 100%;
display: flex;
/*align-items: center;*/
justify-content: space-around;
}
.login input{
width: 50px;
height: 30px;
line-height: 30px;
font-size: 19px;
margin-top: 35px;
background: orange;
outline: none;
border: none;
color:#fff;
border-radius: 5px;
}
section{
display: flex;
flex-wrap: wrap;
background: white;
justify-content: space-around;
}
.section{
display: flex;
width: 40%;
line-height: 40px;
background: lightblue;
align-items: center;
align-content: center;
justify-content: space-around;
margin-top: 10px;
border-radius: 5px;
}
.shopping {
width: 95px;
background: orange;
display: flex;
justify-content: center;
align-items: center;
color:white;
font-weight: bold;
border-radius: 5px;
}
.btn:hover{
color:red;
}
@media screen and (max-width: 300px) {
body {
background-color:lightblue;
}
}
</style>
</head>
<body>
<!-- 头部 -->
<header>
<div class="logo">
<img src="http://img1.sycdn.imooc.com/climg//59197ab000014f1503000100.jpg" alt="">
</div>
<ul class="nav">
<li>课程</li>
<li>路径</li>
<li>猿问</li>
<li>手记</li>
</ul>
<div class="login">
<input type="button" value="登录">
<input type="button" value="注册">
</div>
</header>
<!-- 主体内容 -->
<section>
<div class="section">
<div class="box">
<p>《前端小白入门手册》</p>
<div>适用人群:没有任何前端基础的小白</div>
<div>费用:¥499</div>
</div>
<div class="shopping">
<div class="btn">加入购物车</div>
</div>
</div>
<div class="section">
<div class="box">
<p>《HTML5月CSS3实现动态网页》</p>
<div>适用人群:有html和css基础的童鞋</div>
<div>费用:¥599</div>
</div>
<div class="shopping">
<div class="btn">加入购物车</div>
</div>
</div>
<div class="section">
<div class="box">
<p>《HTML5月CSS3实现动态网页》</p>
<div>适用人群:有html和css基础的童鞋</div>
<div>费用:¥599</div>
</div>
<div class="shopping">
<div class="btn">加入购物车</div>
</div>
</div>
<div class="section">
<div class="box">
<p>《前端小白入门手册》</p>
<div>适用人群:没有任何前端基础的小白</div>
<div>费用:¥499</div>
</div>
<div class="shopping">
<div class="btn">加入购物车</div>
</div>
</div>
</section>
</body>
</html>
正在回答 回答被采纳积分+1
相似问题
登录后可查看更多问答,登录/注册
- 参与学习 人
- 提交作业 622 份
- 解答问题 6815 个
微信带火了小程序,也让前端工程师有了更多的展现机会,本阶段带你从移动基础知识的学习到webAPP开发,及小程序开发,让你PC端与移动端两端通吃。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星