2-9编程练习问题

2-9编程练习问题

<!DOCTYPE html>

<html>

<head>

  <meta charset="UTF-8">

  <title>Document</title>

  <style>

    *{

      margin: 0;

      padding:0;

    }

    .test{

     width: 800px;

     height: 100px;

     background: red;

     /*此处写代码*/

     position:fixed;

     margin:0 auto;

    

   }

   .out{

    width: 100%;

    height: 2000px;

    background-color: #abcdef;

    border:1px solid #333;

  }

</style>

</head>

<body>

  <div class="out">

    <div class="test"></div>

  </div>

</body>

</html>

<!DOCTYPE html>

<html>

<head>

  <meta charset="UTF-8">

  <title>Document</title>

  <style>

    *{

      margin: 0;

      padding:0;

    }

    .test{

     width: 800px;

     height: 100px;

     background: red;

     /*此处写代码*/

     position:fixed;

     left:50%;

     right:400px;

    

   }

   .out{

    width: 100%;

    height: 2000px;

    background-color: #abcdef;

    border:1px solid #333;

  }

</style>

</head>

<body>

<div>ruierwiopr[]</div>

  <div class="out">

    <div class="test"></div>

  </div>

</body>

</html>

请问红色块为什么没居中?怎么解决这个问题呢?

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

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

1回答
好帮手慕查理 2018-08-31 18:18:20

您好,代码结构使用提供的结构即可。页面中水平居中显示,需要设置左边为50%,但设置之后会并没有居中,此时我们就需要将div块再向左移动div块一半的距离,因此是left:50%;margin-left:-400px;。祝学习愉快!

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    *{
      margin: 0;
      padding:0;
    }
    .test{
     width: 800px;
     height: 100px;
     background: red;
     /*此处写代码*/
     position:fixed;
     left:50%;
     margin-left:-400px;
   }
   .out{
    width: 100%;
    height: 2000px;
    background-color: #abcdef;
  }
</style>
</head>
<body>
  <div class="out">
    <div class="test"></div>
  </div>
</body>
</html>


  • 提问者 慕圣2241928 #1
    请问为什么是margin-left:-400px;right:400px不是左移400吗? 而且margin-left:-400px是相对于哪个盒子移动呢?这些原理上课老师都没讲,搞得好乱
    2018-09-01 11:12:01
  • 慕布斯37364 回复 提问者 慕圣2241928 #2
    https://zhidao.baidu.com/question/525902282.html 我觉得你可以看一下这个,我觉得目前还是记住老师的方法吧。
    2018-09-02 12:03:43
问题已解决,确定采纳
还有疑问,暂不采纳

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

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

0 星
从网页搭建入门Java Web2018版
  • 参与学习           人
  • 提交作业       1088    份
  • 解答问题       10205    个

如果你有Java语言基础,又想以后从事Java Web开发,那么本路径是你的不二选择!本路径从网页搭建开始入手,通过大量案例来学习Java Web基础。定能助你完成Java Web小白的蜕变!

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

在线咨询

领取优惠

免费试听

领取大纲

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