-1
A
回答
2
您想了解z-index屬性。但基本上,任何你應用z-index
需要有一個position
設置...我很確定static
不起作用,但absolute
relative
& fixed
都做到了。那麼你可以訂購它們。例如:
.div-background{
z-index:1;
position:relative;
}
.div-middle{
z-index:2;
position:relative;
}
.div-front{
z-index:3;
position:relative;
}
有意義嗎?
+0
非常感謝。是的,這是有道理的,我會看看,看看我如何去。 – 2015-01-20 23:25:11
0
所有你需要做的是在花樣的背景IMG添加到CSS 這裏的
div {
background: url(../images/purpalt.png) repeat;
}
[http://www.bootply.com/4iBwk4Tmfr][1]
/* CSS used here will be applied after bootstrap.css */
/* Custom container */
.container-full {
margin: 0 auto;
width: 100%;
background: #666;
}
.jumbotron {
background: black;
height: 553px;
}
.container {
background: #ccc;
padding: 15px 10px;
height: 553px;
width: 960px;
}
.image-box {
background: #fff;
text-align: center;
height: 500px;
}
footer {
background: orange;
height: 190px;
<div class="container-full">
<div class="jumbotron">
</div>
<div class="container">
<div class="col-md-12">
<div class="image-box">
Image to go here
</div>
</div>
</div>
</div> <!-- /container full -->
<footer></footer>
+0
謝謝你。通過在頁面底部製作頁腳,進一步提高了一點。唯一的問題是它滯留在那裏,頁面越長,它就不會移動。我的HTML代碼,
和css是.footer { \t背景顏色:#F6861F; width:1920px; height:190px; 職位:固定; } – 2015-01-21 01:10:56相關問題
- 1. 創建不同的滾動純CSS
- 2. 如何在css中創建疊加層?
- 3. 如何用CSS創建不透明底層?
- 4. CSS層疊不
- 5. 創建圖層
- 6. 在KineticJS中創建具有不同圖層形狀的組
- 7. 爲OSX中的不同應用程序創建疊加層
- 8. 可以使用不同模式創建多層對象?
- 9. 分層創建DOM
- 10. 創建不同類
- 11. 的CSS:創建使用CSS
- 12. MDX:創建一個不包括來自不同層次的條目的集合
- 13. 如何使用css創建不同形狀的梯形圖像?
- 14. 如何在css中創建不同的形狀?
- 15. 使用simple_form創建每個表單的不同css風格
- 16. 創建多個不同的CSS/Javascript彈出窗口
- 17. 創建不同的URL
- 18. 創建不同的對象
- 19. 創建不同的對象
- 20. 創建不同的行組
- 21. 創建不同的UITableViewCell類
- 22. 在CSS中創建同心圓
- 23. Grunt構建不會創建css文件
- 24. 創建相同的密鑰值不同
- 25. 創建CSS
- 26. 創建CSS列
- 27. 創建CSS
- 28. 在創建CSS
- 29. 創建CSS
- 30. 創建CSS
您沒有提供任何標記的代碼示例,因此很難評估你的情況。下面是關於如何創建一個MCVE的指南:http://stackoverflow.com/help/mcve – Terry 2015-01-20 23:20:49
我只需要知道是否有可能創建3個不同的容器與以下背景以及我將如何去做呢?謝謝。 – 2015-01-20 23:22:12
簡答:**是的,這是可能的**。再次,沒有任何標記,我們應該如何幫助?在所以它有助於你帶來一個特定的問題陳述,顯示你到目前爲止所嘗試的*。 – Terry 2015-01-20 23:23:05