ページの中央に 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 で機能するには、何らかの理由で数字が常にブラウザーの上部に表示される必要があります。
注: ブラウザはフルスクリーンではありません!
スクリーンショットは私の他の質問にあります