Last Updated: February 25, 2016
·
825
· basiclines

Vertical aligning in CSS

.container { display: block; text-align: center }

.container:before {
  content: "";
  width: 1px;
  height: 100%;
}

.container .child,
.container:before {
  display: inline-block;
  vertical-align: middle;
}

2 Responses
Add your response

or:
.yourDiv{ display: box; box-orient: horizontal; box-pack: center; box-align: center }

over 1 year ago ·

Yeah sure, but i was talking about real-world solutions (cross-browser)

over 1 year ago ·