對於我創建的表單,我使用css將單選按鈕顯示爲切換開關。如何防止單選按鈕斷線?
然而,它根本沒有反應。當在移動設備上觀看時,「尺度」1-5被分解。我的目標是響應式地改變規模而不是分手。
不知何故,我似乎無法弄清楚。
下面的代碼:http://jsfiddle.net/7byse1vk/
.toggle__label {
transition: all .25s ease;
display: inline-block;
border-radius: 5px;
background-color: #878787;
cursor: pointer;
padding: 0 30px;
min-width: 100px;
height: 48px;
line-height: 48px;
color: #a7a6ae;
text-align: center;
}
提前非常感謝!