Style height attribute
- Προηγούμενη σελίδα ημικαθιστάς μέγεθος γραμματοσειράς
- Επόμενη σελίδα απομόνωση
- Επιστροφή στο προηγούμενο επίπεδο Οντότητα Style HTML DOM
Definition and Usage
height
Sets or returns the height of an element.
height
The attribute is only valid for block-level elements or elements with absolute or fixed positioning. Overflow content can be overflow attribute to operate.
Tip:Use width attribute Sets or returns the width of an element.
See also:
CSS Tutorial:CSS Dimension
CSS Tutorial:Μοντέλο παραθύρου CSS
CSS Reference Manual:height attribute
Example
Example 1
Set the height of the <button> element:
document.getElementById("myBtn").style.height = "50px";
Example 2
Change the height of the <div> element:
document.getElementById("myDIV").style.height = "500px";
Example 3
Change the height and width of the <img> element:
document.getElementById("myImg").style.height = "300px"; document.getElementById("myImg").style.width = "300px";
Example 4
Return the height of the <img> element:
alert(document.getElementById("myImg").style.height);
Syntax
Return height attribute:
object.style.height
Set height attribute:
object.style.height = "auto|length|%|initial|inherit"
Attribute Value
Value | Description |
---|---|
auto | Browser sets the height. Default. |
length | Defined height with length units. |
% | Defined by the percentage of the parent element. |
initial | Sets this property to its default value. See initial. |
inherit | Inherits this property from its parent element. See inherit. |
Technical Details
Default value: | auto |
---|---|
Return value: | A string representing the height of an element. |
CSS Version: | CSS1 |
Browser Support
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
Υποστήριξη | Υποστήριξη | Υποστήριξη | Υποστήριξη | Υποστήριξη |
- Προηγούμενη σελίδα ημικαθιστάς μέγεθος γραμματοσειράς
- Επόμενη σελίδα απομόνωση
- Επιστροφή στο προηγούμενο επίπεδο Οντότητα Style HTML DOM