CSS 关于让页面的高度达到电脑屏幕的底部
.sidebar:before {
content: "";
display: block;
width: 190px;
position: fixed;
bottom: 0;
top: 0;
z-index: -1;
border: 1px solid #ccc;
border-width: 0 1px 0 0
}
一招完事。。
.sidebar:before {
content: "";
display: block;
width: 190px;
position: fixed;
bottom: 0;
top: 0;
z-index: -1;
border: 1px solid #ccc;
border-width: 0 1px 0 0
}
一招完事。。