這是一份翻譯。與英文版本相比,它可能包含錯誤或者過時。翻譯員:Samuel Chong of Chinese Translation Services through its pro bono translation services
See also the index of all tips.
On this page:
這裡出現一個問題﹐就是圖像可能太寬了。在這種情況下﹐圖像總是在136圖元的寬度和DIV是周圍文章寬度的30%。那麼如果你將範圍調窄﹐有可能圖像會泄出DIV以外(試試看!)。
如果你知道檔裡全部圖像的寬度﹐你可以添加一個DIV的最小寬度﹐就像這樣:
figure { min-width: 150px; }
另外的方法是縮放圖像本身。那就是我們對在右邊的圖像所做的。你可以看到﹐如果你把邊框弄得很寬﹐JPEG的圖像就不會縮放的太好。但是如果圖像是一個SVG格式的圖表或曲線圖的話﹐縮放實際上能美妙的運用。這裡是我們用的HTML標記﹕
<figure> <p><img class=scaled src="st-tropez.jpg" alt="St. Tropez"> <figcaption> 夕陽中的聖特羅佩及其堡壘 </figcaption> </figure>
還有這是樣式表:
figure { float: right; width: 30%; text-align: center; font-style: italic; font-size: smaller; text-indent: 0; border: thin silver solid; margin: 0.5em; padding: 0.5em; } img.scaled { width: 100%; }
唯一的增加是最後的規則﹕規則使圖像和DIV(邊框與內邊距以內的面積)的內側一樣寬。
迷你法國公園裡艾菲爾鐵塔的模型縮放
不像HTML5,HTML4沒有元素可以插入有標題的圖表。有人曾提出, (請見 HTML3)但仍就沒有被包含到HTML4裡面。這是類比圖表元素的一種方式:
<div class=figure> <p><img src="eiffel.jpg" width="136" height="200" alt="Eiffel tower"> <p>迷你法國公園裡艾菲爾鐵塔的模型縮放 </div>
然後再樣式表裡你可以使用"圖表"的分類來隨意格式化圖表。例如,若要將圖表向右浮動與周邊文章段落寬度30%相等的距離,可以使用以下規則:
div.figure { float: right; width: 30%; text-align: center; font-style: italic; font-size: smaller; text-indent: 0; border: thin silver solid; margin: 0.5em; padding: 0.5em; }
跟之前一樣﹐只有前兩個定義(浮動和寬度)是必要的﹐其餘的只是為了裝飾而已。
為避免圖像溢出表格,若你知道所有檔中圖像的寬度,你可以給DIV等等增加最低寬度,就像這樣:
div.figure { min-width: 150px; }
夕陽中的聖特羅佩及其堡壘
若要將圖像縮放到表格的寬度(就跟我們在右方圖像所做的一樣),你可以增加種類屬性以及CSS規則,與上面HTML5的範例非常相似。這是我們所使用的編碼:
<div class=figure> <p><img class=scaled src="st-tropez.jpg" alt="St. Tropez"> <p>夕陽中的聖特羅佩及其堡壘 </div>
然後這是樣式表:
div.figure { float: right; width: 30%; border: thin silver solid; margin: 0.5em; padding: 0.5em; text-align: center; font-style: italic; font-size: smaller; text-indent: 0; } img.scaled { width: 100%; }
唯一增加的是最後一條規則: 它讓圖像與DIV內部一樣寬(邊框內區域)。
Created 17 January 2001;
Last updated2022年02月10日 星期四 05:40:52