zoukankan      html  css  js  c++  java
  • CSS水平垂直居中

    水平居中

    • 文本居中
             <style>
    
            div{
              text-aligh:center
            }
    
          </style>            

        

    • 元素居中

          1,margin法    

          <style>
    
            div{
              width:300px;
              margin:0 auto;
            }
    
          </style>

          2,position法     

          <style>
    
            div{
              position:absolute;
              width:300px;
              left:50%;
              margin-left:-150px;
            }
    
          </style>

    垂直居中

    • 文本居中

          1,单行文本居中 

          <style>
    
            div{
              height:30px;
              line-height:30px;
            }
    
          </style>

          2,多行文本居中    

          <style>
    
            div{
             padding:30px 0;
            }
    
          </style>
    • 元素居中

          1,position法    

          <style>
    
            div{
              position:absolute;
              top:50%;
              height:300px;
              margin-top:-150px;
            }
    
          </style>

         

           2,table法   

     

    <style>
    
            div{
                   display:table
            }
    
            div span{
                display:table-cell;
                vertical-align:middle;
            }
    
    </style>    

       

          

        

          

          

  • 相关阅读:
    屏幕截图(带光标)
    warning LNK4070的解决办法
    2015-08-10
    wmic的用法
    2015-03-12
    MFC Button控件自绘
    MFC窗口创建、销毁消息流程
    DDX_Control、SubclassWindow和SubclassDlgItem
    css animation fade in
    kohana reading session data error(session_start)引起的错误
  • 原文地址:https://www.cnblogs.com/byronvis/p/4506770.html
Copyright © 2011-2022 走看看