Young coder realizing that he does not need to use tables for layout

CSS 排版:希望就在眼前

大部分用戶使用的流覽器都有很好的 CSS 支援,當然它們也有個各自的脾性, 不過只要你習慣了它們,就能夠處理得很好。

編寫 CSS 代碼很簡單。即便對於一個看 JavaScript 就像看天書的傢伙來說也是如此。

if(links[x].length > 0);{
for (y=0; y<links[x].length; y++) {

每條 CSS 規則都有一個選擇符和一個聲明。 聲明是由 屬性名(property)屬性值(value) 組成的。 屬性名一般使用連字元(-)連接。

body {margin:0; padding:0}

.related {float:right; width: 15em; margin-left:1em; margin-bottom:1em; color:blue}

#footer {color:gray; font-size:0.6em; line-height: 1.2em; background-color:white; margin:0}

>
Scott Design