块标签边距底部

时间:2017-01-28 20:00:11

标签: javascript jquery html css

我正在尝试为广播标签添加保证金。我已经将显示样式更改为阻止并添加了底部边距,但它似乎根本不会影响间距,并且与后续元素重叠。

Div padding sets spacing Label margin does nothing

https://jsfiddle.net/wospyqah/

e.g:

.slider-label {
    position: absolute;
    display: block;
    cursor: pointer;
    color: #5e5e5e;
    text-align: center;
    margin-bottom: 50px;
}

1 个答案:

答案 0 :(得分:1)

问题是.radios-to-slider类设置为使用position:relative,它将其从文档的正常流程中取出。 只需为divinput类添加上边距,而不是向该类添加下边距。

div.divinput {
    margin-top:50px;
    margin-bottom: 15px;
    display: block;
}

看到这个小提琴:https://jsfiddle.net/uuzw5cwe/1/