html CSS3方法:未知高度宽度居中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html CSS3方法:未知高度宽度居中相关的知识,希望对你有一定的参考价值。

<style>
.tips_layer_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 10000;
}

.tips_layer_wrap .tips_layer {
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 46px 60px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 20px;
    color: #000;
    border-radius: 10px;
}
</style>
<div class="tips_layer_wrap">
	<div class="tips_layer">请填写完整信息</div>
</div>

以上是关于html CSS3方法:未知高度宽度居中的主要内容,如果未能解决你的问题,请参考以下文章

网页制作图片怎么居中

CSS总结——元素的垂直居中(已知高度/未知高度)

如何在 Swift 中未知宽度和高度的视图中居中 UIBezierPath 椭圆?

垂直居中可变高度图像,同时保持最大宽度/高度

如何将未知宽度的绝对定位内容居中?

div垂直居中的N种方法 单行/多行文字(未知高度/固定高度)