Programming Tips - Web: vertically center without table

Date: 2014jan25 Language: CSS Q. Web: vertically center without table A.
<style> .vcenter { display: table-cell; vertical-align: middle; } </style> <div class='vcenter'> Hello </div>
This is sort of a joke but it does work. Now we have flexbox and grid.