如此处所示:
http://mathieuwhite.com/
它在中间说“工作”,似乎是边界的两边,还是图像?
谁能给我一个代码示例?谢谢
最佳答案
这是由CSS :: before和:: after造成的边界攻击。
这是他的代码。
body #container section h2::before, body #container section h2::after {
position: absolute;
top: 7px;
height: 1px;
background-color: transparent;
border-top: 1px solid rgba(0, 0, 0, 0.2);
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
content: "";
而且请注意您的错别字...
关于html - CSS?居中的文本,两边带有边框,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6549063/