```html
.centereddiv {
width: 300px; /* 设置div的宽度 */
height: 200px; /* 设置div的高度 */
backgroundcolor: f2f2f2; /* 设置div的背景颜色 */
position: absolute; /* 使用绝对定位 */
top: 50%; /* 距离顶部50% */
left: 50%; /* 距离左侧50% */
transform: translate(50%, 50%); /* 使用transform属性来水平垂直居中 */
}