Perfectly center a <div> of text?
Perfectly center a <div> of text?
Out of context: Reply #2
- Started
- Last post
- 7 Responses
- ********0
If you know the dimensions of the div you can do it in pure css.
Lets say the div is 500px wide and 200px high.
div {
width: 500px;
height: 200px;
top:50%;
left:50%;
margin-left:-250px;/*half width*/
margin-top:-100px;/*half height*/
}