
April 7th, 2003, 03:33 PM
|
|
Junior Member
|
|
Join Date: Mar 2003
Location: Cary, NC
Posts: 27
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
vertical-align: middle not working in CSS
I put vertical-align:middle in a stylesheet and the text centers but won't align in the middle. This is my code
div.centerpics {
position: absolute;
vertical-align: top;
width:250;
border: 0;
margin: 0;
height: 115px;
top:100px;
left: 250px;
}
div.centerpics h3 {
color: #0066FF;
text-align: center;
vertical-align: middle;
}
My html code is
<div class="centerpics">
<h3>SCHOOLS</h3>
</div>
|