客观的
我希望能够在 css 中创建这样的边框,也许使用伪元素然后是背景图像。
代码
HTML
<div id="footer"></div>
CSS
#footer {
background: #4b4b4b;
color: #868686;
padding: 0;
position: relative;
height: 100px;
width: 900px;
}
#footer:before {
content: "";
display: block;
width: 220px;
background-color: #e1e1e1;
height: 8px;
}