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