2015-12-17 79 views
2

容器流體我想實現如下:引導設計differens顏色

有每邊一個背景顏色的液體容器 - 但分離器應該在內部容器中的兩個的cols。

我試圖在這張照片中描述它。這甚至有可能嗎? enter image description here

+0

請提供一些plunker/jsfiddle/codepen。 –

+1

你可以使用背景:gradient()屬性爲這個在不同的顏色兩側 –

+0

鏈接到codepen是:http://codepen.io/bootmartin/pen/rxeVOj – MarSch

回答

1

這可以在.container-fluid類之前和之後使用psuedo元素或給出任何其他類名稱。 這裏是代碼筆演示:

`http://codepen.io/duptitung/pen/adNOpV` 
0

你,你可以給特定顏色的背景圖像,並把它放在特定區域

CSS

.container-fluid{ 
    background:url(//image link//); 
    background-position: // arrange image // ; 
    background-size: auto 100%; 
} 
1

使用CSS位置和後/前請參見下面的鏈接: Codepen

.container { 
 
    background: #ddd; 
 
    height: 250px; 
 
} 
 
.extra1 { 
 
    height: 250px; 
 
    background: #fff; 
 
    position: relative; 
 
    z-index: 999; 
 
} 
 
.extra2 { 
 
    height: 250px; 
 
    background: #000; 
 
} 
 
.extra1:before { 
 
    content: ''; 
 
    background: yellow; 
 
    position: absolute; 
 
    width: 300%; 
 
    top: 0px; 
 
    height: 100%; 
 
    left: -200%; 
 
} 
 
.extra2:before { 
 
    content: ''; 
 
    background: green; 
 
    position: absolute; 
 
    width: 300%; 
 
    top: 0px; 
 
    height: 100%; 
 
    right: -200%; 
 
} 
 
.your-things { 
 
    position: absolute; 
 
    left: 0; 
 
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" /> 
 
<div class="container"> 
 
    <div class="row"> 
 
    <div class="col-md-4 extra1"> 
 
     <div class="your-things"> 
 
     <p>.col-md-4</p> 
 
     </div> 
 
    </div> 
 
    <div class="col-md-8 extra2"> 
 
     <div class="your-things"> 
 
     <p>.col-md-8</p> 
 
     </div> 
 
    </div> 
 
    </div> 
 
</div>

+0

有趣!將嘗試這一個。任何負面影響? – MarSch

+0

我認爲這會奏效 –