如何在firefox中设置边框

时间:2014-03-13 11:00:32

标签: html css firefox

我有一些css代码,我已经用于html页面,就像这样

<style>
    body{
        border-width: 8px;
        border-style: solid;
        border-color: #045FB4;
        margin:0px;
    }
</style>

在IE和Chrome中,它正好显示我何时将该页面用作我网站的弹出窗口。但是同一页如果我在firefox中使用它的底部边框不是底部它是8%以上意味着不到精确的角落。

如果我使用firefox来显示页面,我需要建议如何设置边框。

我试过了

 margin-bottom:-65px;//in css

它在firefox中非常好用,但对于其他浏览器,它添加了一个滚动条。

1 个答案:

答案 0 :(得分:1)

好吧......首先它看起来很奇怪......因为jsfiddle也表现出同样的行为

然后我将heightwidth添加到父包装器中:

html{
    width:100%;
    height:100%;
}

似乎工作 demo

旁注:

也可以body height width

width:100%;
height:100%;

然后使用单行样式:

 border: 8px solid #045FB4; /* same as what u wrote in 3 lines */