CSS: Vertical-align not working | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

CSS: Vertical-align not working

Please check inside the style tag. I am not sure why "vertical-align" is not working. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Browse Images</title> <style> #block{ width:300px; height:250px; background-color:yellow; padding:10px; margin-top:0px; vertical-align: middle; text-align:center; } #imagetitle{ width:300px; height:25px; background-color:orange; padding:10px; margin-bottom:0px; vertical-align: middle; text-align:center; } </style> </head> <body> <h1 id ="imagetitle">Earth</h1> <div id ="block"> <button id = "prev" onClick = "prev()"> Prev </button> <img id="slider" src="Earth.gif" width="200px" height="200px"/> <button id = "next" onClick = "next()"> Next </button> </div> <script> var text = document.getElementById("imagetitle"); var number = 0; var images = ["Earth.gif","Colors.gif","Rose.gif"] var title = ["Earth","Colors","Rose"] function next(){ var slider = document.getElementById("slider"); number++; if (number >=images.length){number = 0}; slider.src = images[number]; text.innerHTML = title[number]; } function prev(){ var slider = document.getElementById("slider"); number--; if (number < 0){number = images.length - 1}; slider.src = images[number]; text.innerHTML = title[ number]; } </script> </body> </html>

19th Aug 2020, 4:00 PM
Bishwajit Khanra
Bishwajit Khanra - avatar
3 Answers
+ 2
vertical-align must be paired with line-height https://code.sololearn.com/WpUTePYkG7z2/?ref=app
19th Aug 2020, 4:03 PM
Gordon
Gordon - avatar
+ 2
Divya Mohan Oh you are right, for div, once we defined line-height, we don't need to use vertical-align Thanks for letting me know ^^ I looked into MDN, and update the code for table cells and super/sub.
19th Aug 2020, 9:59 PM
Gordon
Gordon - avatar
- 1
I don't think vertical-align works now And I think Gordon you can do it with line height only. No need for vertical-align.
19th Aug 2020, 4:07 PM
Divya Mohan
Divya Mohan - avatar