2007-11-28 22:02 inline和block
Block Element:<div>、<table>、<ol>、<ul>...etc
Inline Element:<span>、<a>、<input>...etc
更多可參考http://big5.ce.cn/gate/big5/blog.ce.cn/html/28/106828-14009.html
Inline特點是和其他元素在同一行顯示,而且height、padding、margin不得改變,寬度是內文或圖片的寬度也不可自行設定ex,block則完全相反,特點為從新的一行開始且width、height、padding、margin都可自行設定。
可用display:block或display:inline的CSS屬性把inline元素切換為有block Element的性質,反之亦然。


