I can horizontally align a div and all the content looks nice. Looking to vertical align a div that does not contain any tables. I tried setting margin positions to some neg
I think it is possible to do it without display: table.
display: table
this is the example:
HTML:
something
CSS:
.notificationArea { position: absolute; top: 50%; bottom: 50%; right: 50%; left: 50% }