英 [haɪt]   美 [haɪt]  

n.身高;高度,海拔;高地;絕頂,頂點

複數: heights

css height屬性 語法

作用:設定元素的高度。

說明:這個屬性定義元素內容區的高度,在內容區外面可以增加內邊距、邊框和外邊距。行內非替換元素會忽略這個屬性。

註解:所有主流瀏覽器都支援 height 屬性。

css height屬性 範例

<html>
<head>
<style type="text/css">
img.normal 
{
height: auto
}

img.big 
{
height: 160px
}

img.small 
{
height: 30px
}
</style>
</head>
<body>

<img class="normal" src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" />
<br />
<img class="big" src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" />
<br />
<img class="small" src="http://img.php.cn/upload/article/000/005/656/5af270fd37755429.jpg" />

</body>
</html>

執行實例 »

點擊 "執行實例" 按鈕查看線上實例