I have a div right floating within another div container. Within the right floating div I’m displaying text (date / time). How do I vertically align the text without using top padding? When I use top padding it moves my div down and then it’s no longer center within the container. Thanks!
I have a div right floating within another div container. Within the right floating
Share
In your css try using line-height on your container. Use the same value in your line-height as in the height of your container. That should vertically align you text.
If the div is
height:50px;than addline-height:50px;