zoukankan      html  css  js  c++  java
  • 让元素垂直水平居中的方式

        结构:     <div class="box"></div>

      方法一:

        .box{

          300px;

          height:200px;

          position:absolute;

          left:50%;

          top:50%;

          margin-left:-150px;

          margin-top:-100px;

          background:red;

        }

      方式二:

        .box{

          300px;

          height:200px;

          background:red;

          position:absolute;

          left:0;

          top:0;

          right:0;

          bottom:0;

          margin:auto;

        }

      方式三:

        .box{

          300px;

          height:200px;

          background:red;

        }

      js部分:

        $(".box").css({

          position:absolute,

          left:($(window).width()-$(".box").outerWidth())/2,

          top:($(window).height()-$(".box").outerHeight())/2,  

        })

        

     

       .

    第七种

    {
      position: absolute;
      left: 0;
      right:0;
      top: 50%;
      z-index: 1;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       transform: translateY(-50%);
       text-transform: uppercase;
    }
  • 相关阅读:
    对数可以用来简化乘法计算
    理解了一点github的用法了
    由摄氏温度和华氏温度转换想到的。
    CMD原来是支持通配符的啊
    怎么在CMD中创建文件
    如何学习数学
    SCILAB
    STS或eclipse安装SVN插件
    Html解析类的新选择CsQuery
    Tomcat编码问题
  • 原文地址:https://www.cnblogs.com/ly-qingqiu/p/10232055.html
Copyright © 2011-2022 走看看