zoukankan      html  css  js  c++  java
  • 垂直居中方法总结

    <style>
    	#box{
    		position: absolute;
    		margin: auto;
    		top:0px;
    		right: 0px;
    		bottom: 0px;
    		left: 0px;
    		 100%;
    		height: 30%;
    		background-color: red;
    		text-align: center;
    	}
    </style>
    <body>
    	<div id="box">
    		<h1>文字居中</h1>
    	</div>
    </body>
    

      

    第一种的好处是不用知道垂直居中的元素的高宽,但是必须设置元素的宽高!然后通过margin:auto;来达到效果。

    <style>
    	#box{
    		position: absolute;
    		top:50%;
    		left:50%;
    		transform:translate3d(-50%,50%,0);
    		background-color: red;
    		text-align: center;
    	}
    </style>
    <body>
    	<div id="box">
    		<h1>文字居中</h1>
    	</div>
    </body>
    

      

    这种的好处是宽高不用定义!

    <style>
    	.box{  
    	    display: flex;  
    	    height: 400px;  
    	    align-items:center;  
    	    justify-content:center;
    	    background: #0099cc  
    	}  
    	h1{  
    		display: flex;  
    	    align-items:center;  
    	    justify-content:center;
    	}  
    </style>
    <body>
    	<div class="box">  
    	    <h1>实现元素水平居中</h1>  
    	</div> 
    </body>
    

      

    想要让那个元素居中,就在其父元素加 display:flex;justify-content:center;align-items:center;

    按照原理,往body里设置这3个样式,就能按body垂直居中,但是没有,是因为body的默认高度为0px;在给个height:600px;就会有效果的!

    <style>
    	#container{
    		position: absolute;
    		top:0px;
    		right: 0px;
    		bottom: 0px;
    		left: 0px;
    		display: flex;
    		justify-content:center;
    		align-items:center;
    	}
    	.box{  
    	    display: flex;  
    	    height: 400px;  
    	    align-items:center;  
    	    justify-content:center;
    	    background: #0099cc  
    	}  
    	h1{  
    		display: flex;  
    	    align-items:center;  
    	    justify-content:center;
    	}  
    </style>
    <body>
    	<div id="container">
    		<div class="box">  
    		    <h1>实现元素水平居中</h1>  
    		</div>
    	</div> 
    </body>
    

      

    对于移动端,这是我常用的一种方法,这样屏幕的宽高就都有了!

  • 相关阅读:
    如何使得VIM显示行号
    mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication的解决方法
    重启PHP命令
    一个方便的shell命令,查看软件安装目录
    Centos中安装vim
    centos yum安装mysql
    nginx安装php和php-fpm
    大数据实时计算工程师/Hadoop工程师/数据分析师职业路线图
    vim命令
    linux 下MySQL的安装
  • 原文地址:https://www.cnblogs.com/luguiqing/p/6506004.html
Copyright © 2011-2022 走看看