2010-01-19 94 views
15

我想使用960网格系统为我的网站生成布局。我从他们的网站下载了自定义发生器的24列流体版本。960网格布局的好教程?

现在我想知道我可以用它做的每一件小事。我查看了css文件,发现了一些类名,如.suffix_x .prefix_x .push_x .pull_x .clear .clear_fix等

我在哪里可以找到解释所有这些的教程?如何制作左栏,主div等。

奇怪的是,它并没有教你如何在他们的网页上实际使用网格系统。我无法找到一个很好的教程,解释了谷歌的一切。

如果有人能够推荐这样的教程,那将会很棒。

如果你们中的一些人使用了960流体网格系统,那么也会很好的链接到好的教程。

回答

9

their site的最底部,他们有几个指向教程的链接。

我想你会在960

0

净啧文章是非常好的,但我有一些更多的分享。学习Grid960对我来说非常痛苦。其中大部分内容都是重申净内容的文章。这给了直觉的新手,因为它是这样一个头痛:

简介

报纸和杂志使用网格之间排水沟系统,它使页面看起来更顺眼,当您使​​用设计技巧。网格将完美地引导你。在开始之前,您必须了解CSS/HTML嵌套。

<div class="a"> 
I include all the items A. 
<div class="b"> 
    I include all the items of B with all of A. 
</div> 
<div class="c"> 
    I include all the items of C with all of A. B is not here, but it is on the same level. 
    <div class="d"> 
     I include all the items of A with C and D 
    </div> 
</div> 

看一下例子文件,看看如何可以打破你设计成一个网格。

通过在Chrome + IE + Firefox中按F12键(谢谢拉里!)使用检查器。突出显示这些框以查看CSS如何编辑。我发现直接进入Grid960的css文件非常困难。你会看到每个网格是如何创建的

声明一个12大小的网格作为父div。子div必须加起来为12,你可以按照你想要的方式分解页面。例如:3格+3格+6格= 12格。 3格+4格+4格+1格= 12格。如果你在Chrome中使用F12,你可以看到这个。突出显示示例文件中的网格。不要忘记,当你完成一行并且想要开始一个新行时,请添加div。

<div class="container_12"> 
<div class="grid_12"><a href="images/header.png" alt=""></a></div> 
<div class="clear"></div> 


<div class="grid_12" id="navbar">A</div> 
<div class="clear"> </div> 

<div class="grid_7">B</div> 

<div class="grid_5">C</div> 
<div class="clear"></div> 

<div class="grid_12 spacer">D</div> 
<div class="clear"></div> 


<div class="grid_3">E</div> 
<div class="grid_3">F</div> 
<div class="grid_3">G</div> 
<div class="grid_3">H</div> 

<div class="clear"></div> 

<div class="grid_12 spacer">I</div> 
<div class="clear"></div> 

<div class="grid_4">J</div> 

<div class="grid_4">K</div> 
<div class="grid_4">L</div> 

</div> 

前后缀:

说你希望你的网格在中间开始。单独声明一个网格3是不够的。你需要给它一个额外的信息,说明我希望它“浮动”。这是后缀和前缀进来的地方。前缀表示跳过x个div的数量,后缀表示后面跳过x个div的数量。

净TUTS

亚尔发和奥米加:

如果我想申请一个样式,让它达到了几格包括阴沟空间。 Alpha是第一个,而Omega是它应用于的最后一个div。

从净值TUTS

推拉

这是拉里!推拉是开发商想要重新排列搜索引擎优化页面。

http://www.clubosc.com/960-grid-tutorial-understanding-push-and-pull-classes.html

通知的粉红色和黄色类如何反转,但是div的排列在相反的方式?