将图像移到主要内容CSS后面

时间:2013-03-01 17:04:43

标签: html css position z-index

我的网站上有一些css有问题

this is the main CSS source :
/* html selectors ---- */

html, body {
    font-family: 'Arial Unicode MS';
    margin: 0;
    padding: 0;
    background-repeat: repeat-x;
    background-color: white;
    direction: rtl;
    font-size: 10.3pt;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}


h1 {
    font-size: 17pt;
    text-decoration: underline;
    top: 3px;
    padding-bottom: 10px;
    line-height: 25px;
}

h2 {
    font-family: david;
    font-size: 11pt;
    color: #191970;
}

h3 {
    font-size: 16pt;
    color: white;
    margin-left: 15px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-right: 30px;
    padding-top: -55px;
    font-family: 'Arial Unicode MS';
}



/*page -----------*/
#page {
    width: 900px;
    padding: 0px;
    margin: 0 auto;
    direction: rtl;
    position: relative;
    z-index: 100;
    z-index: 5;
    background-image: url("images/bgimage.png");
}

#leftshadow {
    width: 100px;
    height: 900px;
    background-image: url("images/leftshadow.png");
    position: absolute;
    right: 840px;
    z-index: none;
    top: -25px;
}

#rightshadow {
    width: 100px;
    height: 900px;
    background-image: url("images/rightshadow.png");
    position: absolute;
    right: -45px;
    z-index: none;
    top: -25px;
}

我的问题是如何在主要内容背后移动图像?

我用z-index尝试了很多,但我找不到解决方案,你能帮我解决问题请求吗?

4 个答案:

答案 0 :(得分:2)

我建议您重新设计DOM结构以适应这种情况,如下所示:

<div class="content">
  <div class="page"></div>
  <div class="leftshadow shadow"></div>
  <div class="rightshadow shadow"></div>
</div>

查看新结构如何运作的小提琴 - http://jsfiddle.net/wHgm8/

你也可以,如果你想在页面周围有一个漂亮干净的阴影,请使用css3 box-shadow,例如:http://jsfiddle.net/ASc7J/虽然支持适用于较新的浏览器。

答案 1 :(得分:1)

除了position属性之外,您忘记使用z-index属性。除非应用z-index属性的元素定位,否则z-index将无效之一:

position: relative; position: absolute; position: fixed;

添加其中一个(相对来说最好在你的情况下),它会起作用。

答案 2 :(得分:0)

在您的代码中尝试此操作: box-shadow:5px 0px 5px灰色; 在上面的语法中,5px用于左侧,0px用于顶部和底部,5px用于右侧。玩这些价值观,直到你感到舒服。另外,请确保使用十六进制颜色值,并且适合阴影。

答案 3 :(得分:0)

您同时需要一个位置命令,并且“ none”不是有效的z-index值。 -1为我工作。

style="position:relative; z-index:-1;"