0

这是交易,我有以下带有虚线边框的div:

.dashed-header {
    /*background-color: transparent;*/
    height: 87px;
    margin-top: 5px;
    border-top: 1px dashed #613e27;
    border-bottom: 1px dashed #613e27;
}

由于某种原因,边框是白色而不是白色#613e27,我不知道为什么会这样?这是我的网页您可以在深棕色标题行中看到此边框。

4

2 回答 2

0

尝试使用:

border-color: #613e27 !important;
于 2012-08-16T18:37:32.247 回答
0

我有IE8,它工作正常,我把它放在另一个div里看看颜色是否消失,但颜色仍然存在

<style>
.main {
    height: 200px;
    width:200px;
    margin-top: 5px;
    border: 1px solid black;
    background-color:#A1Ae27;
    padding: 15px;
}
.dashed-header {
    /*background-color: transparent;*/
    height: 87px;
    width:100px;
    margin-top: 5px;
    border-top: 1px dashed #613e27;
    border-bottom: 1px dashed #613e27;
}
</style>
<body>

<div class="main">
    <div class="dashed-header">
    </div>
</div>
</body>

尝试更改为实心边框,看看它们是否在您的 EI8 中也出现?

于 2012-12-13T01:46:06.557 回答