11

Basically I'm trying to create a similar effect as shown on this url: http://www.mediafire.com/download/asgdi8i12sgi74x/geniets+byrde.txt

That is; I want to create a div (the box) and center it horizontally and vertically at all times. I'm using Bootstrap 3. It seems like a simply task but I haven't managed to do it.

Would love it you could help me out!

user3397240
  • 239
  • 1
  • 3
  • 11

1 Answers1

15

This is general to CSS, not bootstrap3. and we normally do it like this:

  div {
       position: absolute;
       top: 0;
       left: 0;
       bottom: 0;
       right: 0;
       margin: auto;
  }
bingjie2680
  • 7,643
  • 8
  • 45
  • 72