Code thus far:
#master {
position: absolute;
height: auto;
width: 1000px;
min-height: 50px;
}
I want to center the tag horizontally, but not the task. What code do I need to add to do this?
Code thus far:
#master {
position: absolute;
height: auto;
width: 1000px;
min-height: 50px;
}
I want to center the tag horizontally, but not the task. What code do I need to add to do this?
Add the following to your css rules
margin: 0 auto;
This will horizontally center block level elements.