I want to center verticaly a paragraph in a div. For that, I tried to add an image front my text and I add the css "vertical-align:middle" on it.
The first line of my text is verticaly aligned : it's good, but the second line is under my div.
How can I solve my problem ?
Thks
div {
height:200px;
width:200px;
text-align:center;
background:cyan;
position:absolute;
}
span {
height:inherit;
width:inherit;
position:absolute;
left:0;
background: yellow;
text-align:center
}
img {
height:100%;
vertical-align:middle;
width:3px;}
}