网页设计的相关小知识

1.DIV要求自适应

  margin:0px auto;

2.DIV水平居中

  margin-left: auto;
      margin-right: auto;

3.实现Img下的图片自动适应窗口大小

  <div class="top">
            <img alt="加载中" src="/images/zhdj/header-background.jpg"/>
      </div>

  .top>img{
        margin:auto;
        100%;
        height:100%;
     }

  

原文地址:https://www.cnblogs.com/onlymate/p/4441739.html