HTML CSS Reference/CSS Attributes and Javascript Style Properties/height
Содержание
"height" Example
<html>
<body>
<p>
<img id="myImg"
src="http://www.wbex.ru/style/logo.png"
style="width:74; height:100">
</p>
<input type="button" value="Reduce height" onclick="myImg.style.height=50">
<input type="button" value="Restore height" onclick="myImg.style.height=100">
</body>
</html>
"height" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |<a> <acronym> |
| |<address> <applet> |
| |<b> <bdo> |
| |<big> <blockquote> |
| |<button> <caption> |
| |<center> <cite> |
| |<code> currentStyle |
| |<custom> <dd> |
| |<del> <dfn> |
| |<dir> <div> |
| |<dl> <dt> |
| |<em> <embed> |
| |<fieldset> <font> |
| |<form> <frame> |
| |<frameset> <hn> |
| |<hr> <i> |
| |<iframe> <img> |
| |<input type="button"> <inputtype="checkbox"> |
| |<input type="file"> <input type="image"> |
| |<inputtype="password"> <input type="radio"> |
| |<input type="reset"> <inputtype="submit"> |
| |<input type="text"> <ins> |
| |<kbd> <label> |
| |<legend> <li> |
| |<listing> <marquee> |
| |<menu> <nobr> |
| |<object> <ol> |
| |<option> <p> |
| |<pre> <q> |
| |<rt> <ruby> |
| |runtimeStyle <s> |
| |<samp> <select> |
| |<small> <span> |
| |<strike> <strong> |
| |style <sub> |
| |<sup> <table> |
| |<td> <textarea> |
| |<th> <tr> |
| |<tt> <u> |
| |<ul> <var> |
| |<xmp> |
+----------------+--------------------------------------------------------------+
"height" Possible Values
Possible Values
auto The height is set automatically
integer a fixed height with a number followed by a unit designator
percentage Percent of the element"s height
"height" Syntax and Note
Note:
The element"s content height.
Syntax:
element { height: value }
elementID.style.height = "value"
document.all.elementID.style.height = "value" // IE only