Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下容器应垂直居中...:
<div style=" position:fixed; top:0; bottom:0; margin:auto; background-color:red; width: 50px; height:50px; z-index:555; "></div>
...而且它存在于除 Android 之外的所有主要浏览器中。有没有办法在Android中垂直居中?它显示在左上角。
你有没有尝试过
top: 50%; margin-top: -25px;