|
HI, anyone had same problem ?
I trying to put picture in the middle of div, div is with hight and width in px.
I put vertical-align: middle; in div style, but picture is still at the top of the div, how to put it in the middle? any advice please.
/ simon
this is the code I doing :
#LfCenter {
float:left;
width:538px;
height:465px;
vertical-align: middle;
text-align: center;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #377BFB;
background-color: #F5F5F5;
}
|