本篇文章给大家介绍让div在屏幕中水平居中和垂直居中的方式。有一定的参考价值,有需要的朋友可以参考一下,希望对大家有所帮助。
最近写网页经常需要将p在屏幕中居中显示,遂记录下几个常用的方法,都比较简单。
水平居中直接加上bacbf9e1ad7f40415ce1670e31edfee3
标签即可,或者设置margin:auto;
当然也可以用下面的方法
下面说两种在屏幕正中(水平居中+垂直居中)的方法
放上示范的html代码:
<body> <p class="main"> <h1>MAIN</h1> </p> </body>
p使用绝对布局,设置margin:auto;
并设置top、left、right、bottom的值相等即可,不一定要都是0。
.main{ text-align: center; /*让p内部文字居中*/ background-color: #fff; border-radius: 20px; width: 300px; height: 350px; margin: auto; position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
效果如图:
.main{ text-align: center; background-color: #fff; border-radius: 20px; width: 300px; height: 350px; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); }
bacbf9e1ad7f40415ce1670e31edfee3
标签,不过已经过时了,用法如下:<p><center>123</center></p>
这个bacbf9e1ad7f40415ce1670e31edfee3
标签就是相对于e388a4556c0f65e1904146cc1a846bee
标签里的文字,可以使其居中。
由于center标签已经过时了,所以正规一点的话还是不建议使用的,可以使用如下的方式代替:
<p style="text-align:center;">123</p>
推荐学习:html视频教程
以上是div在屏幕中如何实现水平居中和垂直居中的详细内容。更多信息请关注PHP中文网其他相关文章!