我正在尝试为span类添加-15px边距,但对象没有移动。
我已将此添加到课程中:
.pricingbox-circle span.price-large {
margin:-15px 0 0 0;
font-size: 68px;
}
然而没有任何事情发生。
我正试图将价格提升到圈内
我在这里创造了一个小提琴:https://jsfiddle.net/paL776d9/
答案 0 :(得分:2)
span
默认为inline
级元素,不支持负边距。
要解决此问题,请将display
属性更改为inline-block
。
.pricingbox-circle span.price-large {
display: inline-block; /* overwriting the default which is inline`
margin:-15px 0 0 0;
font-size: 68px;
}
编辑JSFiddle。
答案 1 :(得分:2)
将OR
添加到span,它将适合您。