gpt4 book ai didi

html - 在 SCSS 语法中自定义单选按钮

转载 作者:行者123 更新时间:2023-11-28 00:09:19 25 4
gpt4 key购买 nike

我自定义了我的单选按钮,但我想使用 SCSS 使我的代码更清晰。所以我将我的代码从 CSS 更改为 SCSS,但出现了一个问题:

HTML

<input type="radio" name="test" value="value">
<label>
<span></span>
Test radio
</label>

CSS

input[type="radio"] {
display: none;
}

input[type="radio"] + label span {
display: inline-block;
width: 24px;
height: 24px;
margin-right: 6px;
vertical-align: middle;
background: url(./radio-sprite.svg) -46px 0 no-repeat;
background-size: 92px 24px;
cursor: pointer;
}

input[type="radio"]:checked + label span {
background: url(./radio-sprite.svg) -69px 0px no-repeat;
background-size: 92px 24px;
}

input[type="radio"]:disabled + label span {
background: url(./radio-sprite.svg) -22px 0px no-repeat;
background-size: 92px 24px;
}

SCSS

input[type="radio"] {
display: none;

& > label {
cursor: pointer;

span {
display: inline-block;
width: 24px;
height: 24px;
margin-right: $margin-small;
vertical-align: middle;
background: url(./app/shared/assets/icons/radiobtn-sprite.svg) -46px 0 no-repeat;
background-size: 92px 24px;
cursor: pointer;
}
}

&:checked + label span {
background: url(./app/shared/assets/icons/radiobtn-sprite.svg) -69px 0px no-repeat;
background-size: 92px 24px;
}

&:disabled + label span {
background: url(./app/shared/assets/icons/radiobtn-sprite.svg) -22px 0px no-repeat;
background-size: 92px 24px;
}
}

当我用上面的 SCSS 代码替换我的 CSS 时,我的按钮消失了。我看不出问题出在哪里。任何帮助将不胜感激

最佳答案

你必须使用 + 选择器:

& + label {
cursor: pointer;
span {
display: inline-block;
width: 24px;
height: 24px;
margin-right: $margin-small;
vertical-align: middle;
background: url(./app/shared/assets/icons/radiobtn-sprite.svg) -46px 0 no-repeat;
background-size: 92px 24px;
cursor: pointer;
}
}

关于html - 在 SCSS 语法中自定义单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55489224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com