Thuộc tính chiều cao HTML được sử dụng để khai báo chiều cao của phần tử (tính bằng pixel).
LƯU Ý - Kể từ HTML5 hỗ trợ để chỉ định chiều cao trong ‘%’ đã bị xóa.
Các phần tử sau của HTML có thuộc tính height -
- canvas
- nhúng
- iframe
- img
- đầu vào
- đối tượng
- video
Hãy để chúng tôi xem ví dụ về Chiều cao video tài sản -
Ví dụ
<!DOCTYPE html> <html> <head> <title>HTML DOM Video height</title> <style> * { padding: 2px; margin:5px; } form { width:70%; margin: 0 auto; text-align: center; } input[type="button"] { border-radius: 10px; } </style> </head> <body> <form> <fieldset> <legend>HTML-DOM-Video-height</legend> <video id="wordPressIntro" width="320" height="50" controls><source src=" https://www.tutorialspoint.com/html5/foo.mp4" type="video/mp4"></video><br> <input type="button" onclick="getTrackDetails()" value="Video Not Visible"> <div id="divDisplay"></div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var wordPressIntro = document.getElementById("wordPressIntro"); function getTrackDetails() { wordPressIntro.height += 50; divDisplay.textContent = 'Video height: '+wordPressIntro.height; } </script> </body> </html>
Điều này sẽ tạo ra kết quả sau -
1) Trước khi nhấp vào ‘Video không hiển thị’ nút -
2) Nhấp vào ‘Video không hiển thị Nút '3 lần -