1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| <style> html, body { height: 100%; width: 100%; margin: 0; }
.box { display: table; height: 100%; width: 100%; }
.content { display: table-cell; vertical-align: middle; text-align: center; }
.inner { background-color: #000; display: inline-block; width: 200px; height: 200px; } </style> <div class="box"> <div class="content"> <div class="inner"></div> </div> </div>
|