2012-04-28 43 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。