CSS Layout Techniques
2016-11-03 by Bermon Painter [http://bermonpainter.com/] (Meetup
[https://www.meetup.com/Triangle-Front-End-Developers/events/234560049/]) (
Twitter [https://twitter.com/bermonpainter])
Hardest problem on web...
Horizontally and vertically centered box.
body {
display: flex;
align-items: center;
justify-content: center;
}
.box {
height: 100px;
width: 100px;
}
Previous best solution was floats with