盒子绝对定位 position:foxed ; 居中

Posted 阿奇

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了盒子绝对定位 position:foxed ; 居中相关的知识,希望对你有一定的参考价值。

方法1

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        body{
            width:  100%;
            height: 1600px;
            background-color: #c9c7c7;

        }
        p{
            max-width: 500px;
            width: 100%;
            background: red;
            position: fixed;color: white;
            text-align: center;
            left: 0;
            right: 0;
            margin: auto;
        }
    </style>
</head>
<body>

<p>我是绝对定位 我需要居中</p>

</body>
</html>

方法2  (替换上面style 的p标签的样式      )

p{
            max-width: 500px;
            width: 100%;
            background: red;
            position: fixed;color: white;
            text-align: center;
            left:50%;
            transform: translateX(-50%);

        }

 

以上是关于盒子绝对定位 position:foxed ; 居中的主要内容,如果未能解决你的问题,请参考以下文章

绝对定位情况下水平垂直居中小技巧

使用绝对位置和百分比垂直居中子 div 时出现错误

绝对定位的盒子居中算法

盒子定位HTML

如何让绝对定位的盒子进行水平居中

微信小程序实现新闻列表(文字垂直居上垂直居下)