英 [wɪdθ]   美 [wɪdθ, wɪθ, wɪtθ]  

n.寬度;廣度

#複數: widths

css width屬性 語法

作用:設定元素的寬度。

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

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

css width屬性 範例

<html>
<head>
<style type="text/css">
img
{
width: 300px
}
</style>
</head>
<body>

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

</body>
</html>

執行實例 »

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