如何围绕整个网站制作边框

时间:2017-05-30 01:16:14

标签: css border

如何在整个网站周围添加边框,例如:http://ksize.be/

并且我希望该边框在每个页面上保持相同的静态,滚动时其中的内容会发生变化。

先谢谢你们

1 个答案:

答案 0 :(得分:0)

我刚刚复制了示例网站中的代码:

.ct, .cb, .cr, .cl {
    background-color: #e79d80;
    position: fixed;
    z-index: 99999;
}
.ct {
  top: 0;
  right: 0;
  left: 0;
  height: 12px;
}
.cr {
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
}
.cb {
  bottom: 0;
  right: 0;
  left: 0;
  height: 12px;
}
.cl {
  top: 0;
  left: 0;
  bottom: 0;
  width: 12px;
}
  <div class="ct"></div>
  <div class="cr"></div>
  <div class="cb"></div>
  <div class="cl"></div>