Div以5px边距为中心 - 左,右,上和下

时间:2012-06-24 13:13:01

标签: html css

我想制作一个居中(水平和垂直)的div。它应该随屏幕改变大小,但是周围有5个像素边距。

1 个答案:

答案 0 :(得分:4)

#thediv {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
}