作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
我试图在 h2 之前和之后放置彩色点。
这是我的 CSS;
h2:after {
width:10px;
height:10px;
border-radius:50%;
background: #b83b3b;
}
h2:after {
width:10px;
height:10px;
border-radius:50%;
background: #b83b3b;
}
但是没有点出现。
有线索吗?
谢谢!
在恩
最佳答案
为content
属性指定一个值,然后添加display:inline-block
h2:after, h2:before {
content:"\A";
width:10px;
height:10px;
border-radius:50%;
background: #b83b3b;
display:inline-block;
}
关于css - 彩色圆点 :before and :after h2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20579311/
我是一名优秀的程序员,十分优秀!