我看到了很多关于如何将 div 居中到页面中间的示例,但是在所有示例中,div 的大小都是固定的。
如何将 div 放置在 div 高度未知大小的页面中心?
(中间的灰色 div)
我的代码:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<style>
html,body{
margin: 0;
padding: 0;
border: 0;
}
body{
background-color: transparent;
overflow: hidden;
font-family: "Helvetica"
;
color: #359115;
font-weight:bold;
}
#wrapper {
position: absolute;
width: 100%;
height: 100%;
text-align: center;
}
#container {
background-color: #dddddd;
/*height: 100%;
widows: 100%;*/
margin: 0,auto;
text-align: center;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="container" align="center">
<span class="currency">$ </span><span class="integer">4,080,048.</span><span class="decimal">00</span>
</div>
</div>
</body>
</html>
编辑:
我需要它来为 Android 和 IOS 中的 webView 工作,由于某种原因,数字总是出现在浏览器的顶部。
注意:浏览器不是全屏的!
截图在我的另一个问题中