我有一些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中非常好用,但对于其他浏览器,它添加了一个滚动条。
答案 0 :(得分:1)
然后我将height
和width
添加到父包装器中:
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 */