ใช้ส่วน ความสูง คุณสมบัติเพื่อกำหนดความสูงขององค์ประกอบ คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อกำหนดความสูงของปุ่มด้วย JavaScript -
ตัวอย่าง
<!DOCTYPE html> <html> <body> <h1>Heading 1</h1> <p>This is Demo Text.</p> <button type="button" id="myID" onclick="display()">Update Height</button> <script> function display() { document.getElementById("myID").style.height = "100px"; } </script> </body> </html>