Computer >> Máy Tính >  >> Lập trình >> CSS

Căn chỉnh theo chiều dọc của hình ảnh bằng CSS

Để căn chỉnh hình ảnh theo chiều dọc bằng CSS, hãy sử dụng thuộc tính vertical-align. Bạn có thể thử chạy đoạn mã sau để căn chỉnh hình ảnh theo chiều dọc -

Ví dụ

<!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>