zoom:100%显示不完全

zoom:100%显示不完全

当浏览器调试工具的zoom为73%及一下时显示正常

http://img1.sycdn.imooc.com//climg/5c9636ac0001449506530824.jpg

当room调到100%时红框内容就显示不出来了

http://img1.sycdn.imooc.com//climg/5c9636d30001c2b007870939.jpg

还有这个fit to window是啥意思?

http://img1.sycdn.imooc.com//climg/5c9636f20001b65002920217.jpg

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width initial-scale=1 maximum-scale=1 user-scalable=no">

<title>7-2 作业题-慕课网就业班</title>

<link rel="icon" type="image/png" href="img/titleicon.png">

<link rel="stylesheet" type="text/css" href="css/style.css">

<script type="text/javascript" src="js/script.js"></script>

</head>

<body>

<div class="wrapper">

<!-- 顶部 -->

<header>

<nav>

<ul>

<li class="active">前端</li>

<li>java</li>

<li>ios</li>

<li>Android</li>

<li>php</li>

</ul>

</nav>

<div class="center">

<img src="img/1.png">

<span>IMOOC</span>

</div>

<input type="button" value="start">

</header>

<section class="nav">

<div class="active">关于慕课网</div>

<div>关于课程</div>

<div>核心团队</div>

<div>新增专题</div>

</section>

<section class="intro">

<p>响应式</p>

<p>当今最领先的响应式自助建站平台,我们的流线式网页布局设计方案和可视化图文内容编辑模式让网站制作和维护成为一件轻松惬意的事。无论您是普通互联网用户,还是专业网站制作入员,都能使用起飞页设计出最具专业水准的网站。想创建一个简单的单页式站点,还是一个专业的公司网站・亦或是一个别具一格的博客?起飞页可以満足您的所有需求。我们是响应式网站的倡导者,所有前端页面代码均采用HTML5和CSS3实现。起飞页提供了海量精美网站模板和成品网站,几手覆盖了当今各个行业,您只需在模板上进行少里修改・即可完成自己的网站,这一切都是免费的。

</p>

</section>

<div class="mes">

<span>IMOOC</span>

<span>welcome to <a href="www.imooc.com">www.imooc.com</a></span>

</div>

</div>

</body>

</html>


*{

margin:0;

padding:0;

list-style: none;

}

a{

text-decoration: none;

}

html{

font-size: 14px; 

font-family: serif;

}

@keyframes anima1{

from{background-position: -28.5rem -2.6rem;}

to{background-position: 28.5rem 2.6rem;}

}

@keyframes anima2{

from{transform: rotate(90deg);}

to{transform: rotate(0deg);}

}

}

/*iPad响应式页面*/

@media screen and (max-width:800px){

header{

width:100%;

height:50rem;

background: #B2C5CC;

}

header>nav{    

padding-top:3.1rem;

display: flex;

justify-content: center;

}

header>nav ul{

display: flex;

justify-content: space-between;

width: 30rem;

color:#757575;

}

header>nav ul .active{

color:#afafaf;

}

header>.center{

display: flex;

flex-direction: column;

align-items: center;

margin-top: 7.8rem;

color: white; 

}

header>.center span{

margin-top: 2.8rem;

font-size:1.2rem;

}

header input{

display:block;

width: 11rem;

height:3.3rem;

font-size: 1.1rem;

letter-spacing: 0.08rem;

background: #fff;

border:none;

margin:5.8rem auto;

}

.nav{

width: 100%;

height: 5.6rem;

line-height: 5.6rem;

border-bottom:0.14rem solid #ccc;

font-size: 1.1rem;

color:#bababa;

display: flex;

justify-content: space-around;

}

.nav>.active{

color:#545454;

}

.intro{

width: 100%;

height: 35rem;

text-align: center;

}

.intro>p:first-child{

margin-top: 8.4rem;

font-size: 1.5rem;

color:#424242;

font-weight: bold;

}

.intro>p:last-child{

width: 38.5rem;

margin:0 auto;

text-align: left;

margin-top: 2.3rem;

font-size: 1.1rem;

color:#bababa;

line-height: 2.3rem;

}

.mes{

width: 100%;

line-height: 5.4rem;

background: #f4f4f4;

display: flex;

justify-content: space-between;

font-size: 1.15rem;

color:#6b6b6b;

}

.mes>span:first-child{

font-size: 1.2rem; 

margin-left: 4.3rem;

}

.mes>span:last-child{

margin-right: 4.3rem;

}

.mes>span:last-child a:link,

.mes>span:last-child a:visited{

font-weight: bold;

color:#626262;

}

}

/*iPhone6响应式页面*/

@media screen and (max-width:400px){

}


正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

3回答
Steve007 2019-03-24 16:42:16

同学,你好。这是因为显示器分辨率的问题,同学可以按f11全屏下查看,就可以显示完全了。如果不想全屏显示,可以调到合适的百分比页面来查看效果。

祝学习愉快!

  • 提问者 PHXL #1
    问题是显示不完全的话,可以向下滑动显示,但是滑不到最下面
    2019-03-24 16:58:07
  • Steve007 回复 提问者 PHXL #2
    同学,你好。这也是因为显示器分辨率的问题。 祝学习愉快!
    2019-03-24 17:18:21
提问者 PHXL 2019-03-24 16:39:10

浏览器换成全屏模式可以看到下面的内容了,再把zoom调大又看不到了

提问者 PHXL 2019-03-24 08:30:21

是rem单位没有用对吗?

问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
响应式开发与常用框架 2018
  • 参与学习           人
  • 提交作业       2198    份
  • 解答问题       5012    个

如果你有web端基础,既想进阶,又想进军移动端开发,那就来吧,我们专题为你带来的课程有HTML5、CSS3、移动基础、响应式、bootstrap、less等,让你在前端道路上畅通无阻!

了解课程
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师