html5之非常好用的div居中

效果如图 html5之非常好用的div居中_第1张图片
 #navright {
            display: inline-block;
            vertical-align: middle;
            width:100%; 
            height:100%;
            min-height:900px;   
            border:1px solid blue;
        }
        #txnavright {
            position: absolute;
            width: 100%;
            height: 25%;
            text-align: center;
            left: 0px;
            top: 0px;
            border:1px solid red;
           
        } #txnavright2 {
            position: absolute;
            width: 100%;
            height: 25;
            text-align: center;
            left: 0px;
            top: 25%;
            border:1px solid red;
           
        }
       
可以解决多个div同时居中的问题部分

你可能感兴趣的:(html5)