html - Flexbox does not vertically align -


i need vertically aligning following table. can not understand reason why doesn't vertically align.

html:

<table>     <tr>         <td>lorem ipsum</td>         <td>lorem ipsum</td>     </tr>     <tr>         <td>lorem ipsum</td>         <td>lorem ipsum</td>     </tr> </table> 

css:

body {     display: flex;     justify-content: center;     align-items: center; } 

fiddle

you can fix style:

body, html {   height: 100%; } 

without this, body's height takes enough space hold content.

fiddle


Comments

Popular posts from this blog

c++ - OpenMP unpredictable overhead -

ruby on rails - RuntimeError: Circular dependency detected while autoloading constant - ActiveAdmin.register Role -

javascript - Wordpress slider, not displayed 100% width -