CSS背景颜色被背景图像否决

时间:2014-12-31 10:52:21

标签: html css

我有一个带有漂亮背景图片的网页。

enter image description here

当我在该网页上打开一个弹出窗口时,背景颜色设置是css被背景图像中断。

enter image description here

这是CSS的一部分

body {
    margin: 0;
    background: url(../../images/background.png) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
/*  background: #e0e0e0;*/
    line-height: 25px;
    text-align: left;
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #000000;
}

.pop_up {
    background: #f4f4f4;
    font-family: Arial;
    font-size: 12px;
    cursor: auto;
    border-width: 0px;
}

我应该在css中添加什么才能在完整弹出窗口中显示背景颜色#f4f4f4?

此弹出窗口由包含iframe的脚本创建。 我试图将以下代码添加到弹出文件的头部,以试图否决css文件。

<link rel="stylesheet" type="text/css" href="includes/css/style.css"></script>
<style type="text/css"> body { background: f4f4f4; } </style>

2 个答案:

答案 0 :(得分:0)

从您发布的代码中,您需要做的就是为弹出窗口中的CSS元素设置适当的z-index值。有关z-index的详细信息,请参阅here

通常,当为重叠内容应用z-index值时,具有最大z-index值的元素显示在顶部,然后是下一个最大值。价值等...

答案 1 :(得分:0)

尝试使用以下CSS,这将覆盖其他定义

background: #f4f4f4 !important;