2012-04-28 13 views

回答

1

从未使用过的Drupal,但在HTML + CSS下面就为你工作:

#sidebar { 
    float: left; /* push it to the left */ 
} 
#header { 
    overflow: hidden; /* new block formatting context */ 
} 
#content { 
    overflow: hidden; 
} 
#footer { 
    clear: left; /* clear the float */ 
}​ 

jsFiddle Demo

如果你与布局规划工作,这是一个你必须学习HTML和CSS。