Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 CSS 处理树结构层次结构,我需要一些帮助。我想让两个父一个子链接起来,如果我从内容元素中删除字符,我将无法查看border-leftCSS 选择器中定义的内容。::aftera
border-left
::after
a
这是我的jsFiddle。
我怎么能解决这个问题?
一个hacky解决方案是更改content:'a';为content:' ';
content:'a';
content:' ';
http://jsfiddle.net/6jsJv/3/
content:'';
只需尝试使用空参数content:'';而不是提及content:'a';. 该content属性与:before和:after伪元素一起使用,以插入生成的内容。
content
:before
:after