.container{ display: flex; justify-content: center; align-items: center; height: 100vh; } .box { width: 50px; height: 50px; background-color: #00aaff; border: 5px solid #fff; box-sizing: border-box; font-size: 0; position: relative; } .box:after{ content: ""; position: absolute; left: 10px; top: 10px; width: 10px; height: 10px; background-color: #fff; }
使用像素风格的CSS样式表可以让网页看起来更加简洁和可爱。在这个示例中,大家使用了flex布局和box-sizing属性,来让每个块元素都居中并且边框宽度不会改变它的大小。而在.box:after中,大家使用了伪元素来添加一个小白色正方形(大小为10×10像素),来实现其它像素风格中常见的细节效果。