我正在尝试在 1000px 固定宽度页面的左侧和右侧实现虚线(自定义)无聊。
左边的很好,这是一种享受:
#border-left{
position: absolute;
float:left;
top: 0px;
bottom: 0;
width: 5px;
background-image: url('../img/border.gif');
background-repeat:repeat-y;
}
但是,当我在右侧重新执行此操作时,它不会完全起作用。我需要它相对定位在 1000px 的右侧而不是窗口的右侧。
#border-right{
position: relative;
right: 0;
top: 0;
bottom: 0;
margin-top: -90px;
width: 5px;
background-image: url('../img/border.gif');
background-repeat:repeat-y;
}
父元素:
#container{
width:1000px;
display: block;
margin:0px auto;
text-align:left;
padding-top:90px;
}
那是行不通的。我能做到这一点吗?我需要它基本上浮动:正确(但是我不能使浏览器窗口的高度为 100%)。谢谢