盒子绝对定位 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 ; 居中的主要内容,如果未能解决你的问题,请参考以下文章