0
我想添加一個標題,在html上方的切換開關。但是,它隱藏在交換機本身後面。當我增加字體時,我確實看到它。但是,我不想增加字體。以下是代碼片段及其結果:如何在html中爲切換開關添加標題?
HTML:
<label className="hrow switch form-group pull-right">
<input type="checkbox"><span className="slider round"></span>Active</input>
</label>
CSS(交換機):
/* The switch - the box around the slider */ .switch {
position: relative;
display: inline-block;
width: 60px;
height: 34px;
}
/* Hide default HTML checkbox */
.switch input {
display: none;
}
/* The slider */
.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: lightgray;
-webkit-transition: .4s;
transition: .4s;
}
.slider:before {
position: absolute;
content: "";
height: 26px;
width: 26px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .4s;
transition: .4s;
}
input:checked + .slider {
background-color: #85a3e0;
}
input:focus + .slider {
box-shadow: 0 0 1px #85a3e0;
}
input:checked + .slider:before {
-webkit-transform: translateX(26px);
-ms-transform: translateX(26px);
transform: translateX(26px);
}
/* Rounded sliders */
.slider.round {
border-radius: 34px;
}
.slider.round:before {
border-radius: 50%;
}
結果:
不可以。我早些時候試過..沒有工作,現在也沒有。添加「標題」也不起作用。 – crazyCoder
@asf我已經用一個功能正常的代碼段更新了答案 – Milk
我在ReactJS中編寫了這段代碼,我不得不使用它作爲'className'。 – crazyCoder