2017-06-05 126 views
1

如何讓DIV「sideBottom」在「SideTop」和「console」下進入「Main」下?如何讓div下另一個div

這是怎麼看的那一刻:

Current page layout

HTML/CSS:

*{ 
 
    padding : 0; 
 
    margin : 0; 
 
    border : 0; 
 
} 
 
body{ 
 
    background-image : url(' bi-background-cubes.png '); 
 
    background-attachment : fixed; 
 
    background-size : 100% auto; 
 
} 
 
.blended_grid{ 
 
    display : block; 
 
    width : 1370px; 
 
    overflow : auto; 
 
    margin : 50px auto 0 auto; 
 
} 
 
.pageHeader{ 
 
    background-color : rgba(6,67,0,0.4); 
 
    float : left; 
 
    clear : none; 
 
    height : 70px; 
 
    width : 1370px; 
 
} 
 
.sideTop{ 
 
    background-color : rgba(0,2,227,0.4); 
 
    float : left; 
 
    clear : none; 
 
    height : 430px; 
 
    width : 260px; 
 
} 
 
.main{ 
 
    background-color : rgba(171,0,161,0.4); 
 
    float : left; 
 
    clear : none; 
 
    height : 600px; 
 
    width : 680px; 
 
} 
 
.tableInput{ 
 
    background-color : rgba(156,141,0,0.4); 
 
    float : left; 
 
    clear : none; 
 
    height : 350px; 
 
    width : 400px; 
 
} 
 
.tableOutput{ 
 
    clear : none; 
 
    float : left; 
 
    position : relative; 
 
    width : 400px; 
 
    height : 350px; 
 
    background-color : rgba(0,115,97,0.4); 
 
} 
 
.sideBottom{ 
 
    clear : none; 
 
    float : left; 
 
    position : relative; 
 
    width : 260px; 
 
    height : 270px; 
 
    background-color : rgba(255,0,10,0.4); 
 
} 
 
.console{ 
 
    background-color : lightgreen; 
 
    float : left; 
 
    clear : none; 
 
    height : 100px; 
 
    width : 680px; 
 
}
<div class="blended_grid"> 
 
    <div class="pageHeader">` 
 
    <h1> pageHeader</h1> 
 
    </div> 
 
    <div class="sideTop"> 
 
    <h1> SideTop </h1> 
 
    </div> 
 
    
 
    <div class="main"> 
 
    <h1> Main </h1> 
 
    </div> 
 
    <div class="tableInput"> 
 
    <h1>tableInput</h1> 
 
    </div> 
 
    
 
    <div class="tableOutput"> 
 
    <h1> tableOutput</h1> 
 
    </div> 
 
    <div class="sideBottom"> 
 
    <h1> SideBottom</h1> 
 
    </div> 
 
    <div class="console"> 
 
    <h1> Console</h1> 
 
    </div> 
 
</div>

+0

你能改變HTML嗎?我會添加三個HTML包裝,每個列周圍一個,並適當更新您的CSS。 – Blazemonger

+0

請說明您的意思是「go under」。您是指z-index堆疊順序,還是頁面上實際的div排序。 – Korgrue

+0

是的,一定要更新HTML,以使自己更容易 – Huangism

回答

0

擺脫花車,加上一些包裝的div,並使用flex:

我想這是你想要什麼:https://jsfiddle.net/znvuepLq/

這裏有一個很好的資源用於柔性:https://css-tricks.com/snippets/css/a-guide-to-flexbox/

HTML/CSS:

*{ 
 
    padding : 0; 
 
    margin : 0; 
 
    border : 0; 
 
} 
 
body{ 
 
    background-image : url(' bi-background-cubes.png '); 
 
    background-attachment : fixed; 
 
    background-size : 100% auto; 
 
} 
 
.blended_grid{ 
 
    width : 1370px; 
 
    overflow : auto; 
 
    margin : 50px auto 0 auto; 
 
} 
 
.content{ 
 
    display: flex; 
 
} 
 
.pageHeader{ 
 
    background-color : rgba(6,67,0,0.4); 
 
    height : 70px; 
 
    width : 1370px; 
 
} 
 
.sideTop{ 
 
    background-color : rgba(0,2,227,0.4); 
 
    height : 430px; 
 
    width : 260px; 
 
} 
 
.main{ 
 
    background-color : rgba(171,0,161,0.4); 
 
    height : 600px; 
 
    width : 680px; 
 
} 
 
.tableInput{ 
 
    background-color : rgba(156,141,0,0.4); 
 
    height : 350px; 
 
    width : 400px; 
 
} 
 
.tableOutput{ 
 
    width : 400px; 
 
    height : 350px; 
 
    background-color : rgba(0,115,97,0.4); 
 
} 
 
.sideBottom{ 
 
    width : 260px; 
 
    height : 270px; 
 
    background-color : rgba(255,0,10,0.4); 
 
} 
 
.console{ 
 
    background-color : lightgreen; 
 
    height : 100px; 
 
    width : 680px; 
 
}
<div class="blended_grid"> 
 
    <div class="pageHeader">` 
 
    <h1> pageHeader</h1> 
 
    </div> 
 
    <div class="content"> 
 
    <div> 
 
     <div class="sideTop"> 
 
     <h1> SideTop </h1> 
 
     </div> 
 
     <div class="sideBottom"> 
 
     <h1> SideBottom</h1> 
 
     </div> 
 
    </div> 
 
    <div> 
 
     <div class="main"> 
 
     <h1> Main </h1> 
 
     </div> 
 
     <div class="console"> 
 
     <h1> Console</h1> 
 
     </div> 
 
    </div> 
 
    <div> 
 
     <div class="tableInput"> 
 
     <h1>tableInput</h1> 
 
     </div> 
 
     <div class="tableOutput"> 
 
     <h1> tableOutput</h1> 
 
     </div> 
 
    </div> 
 
    </div> 
 
</div>

+0

非常感謝你!這正是我想要的!太棒了....你是一個明星*。 – Ng21

0

嘗試使用的z-index。它決定了什麼div/object首先被渲染。 :)

+1

好主意,但你應該包括一個例子,以防他是一個視覺學習者。 MDN關於Z索引的文章的鏈接也會有所幫助。 – ashbygeek

+0

謝謝,很高興知道z-index。 – Ng21