CSS का उपयोग करके किसी छवि को लंबवत रूप से संरेखित करने के लिए, लंबवत-संरेखण गुण का उपयोग करें। आप छवि को लंबवत रूप से संरेखित करने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं -
उदाहरण
<!DOCTYPE html> <html> <head> <style> img { vertical-align: text-bottom; } </style> </head> <body> <p>This is <img src = "https://www.tutorialspoint.com/videotutorials/assets/videos/courses/155/images/course_155_image.png" alt000 = "Video Tutorial" width = "200" height = "150"> demo image.</p> </body> </html>