I have a div this is 690 x 300. it is floated left inside a wrapper div. line height is set to 300 ( to make text vertical center ). Text align is also center. I need 2 lines of text but when i try to add 2nd line of text, it drops down soooo many rows. is there a way to get rid of all of those extra rows of spacing? I want the 2nd row of text to be just below the first line like a normal block of text would. this is my current css for that div:
Code:
.box {
background-color: #FFF;
text-align: center;
height: 300px;
width: 690px;
float: left;
line-height: 300px;
}
Any help would be great
Thanks