gpt4 book ai didi

html - 更改 UIkit 复选框的背景颜色

转载 作者:太空宇宙 更新时间:2023-11-04 07:33:00 25 4
gpt4 key购买 nike

问题:

如何更改 UIkit 图标的颜色?具体来说,我想更改复选框图标的背景颜色。

这是 UIkit Form documentation 的链接.

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.40/css/uikit.min.css" />
<input style="color:red" class="uk-checkbox" type="checkbox">

我想改变背景的颜色。

最佳答案

input.uk-checkbox {
background-color: red;
}

input.uk-checkbox:checked {
background-color: red;
}

input.uk-checkbox:checked:focus {
background-color: red;
}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.40/css/uikit.min.css" />
<input class="uk-checkbox" type="checkbox">

Because the UIkit applies styling using their framework you wil have to overwrite.

所以他们使用.uk-checkbox {background-color: red;},就像上面的输入一样,input.uk-checkbox {background-color: red;}

关于html - 更改 UIkit 复选框的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49208169/

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