gpt4 book ai didi

javascript - 如何更改复选框旁边的文本颜色

转载 作者:太空宇宙 更新时间:2023-11-03 21:35:49 25 4
gpt4 key购买 nike

快速提问我有 3 个复选框

我想让它们旁边的文字变白,时间旁边的文字是指"is"部分

有什么想法吗?

	<div class="wrapper3">
<h3 style="color:white;"><i>Choose Your Game Preferences</i></h3>
<h4 style="color:white;"><i>Do You Want Sound ?</i></h4>
<input type="checkbox" value="No" id="sound">Yes
<h4 style="color:white;"><i>Do You want Text ?</i></h4>
<input type="checkbox" value="No" id="text">Yes
<h4 style="color:white;"><i>Do You want Flashes ?</i></h4>
<input type="checkbox" value="No" id="flash">Yes
</div>

最佳答案

可能跨度是最简单的:

<h4><i>Do You want Flashes ?</i></h4>
<input type="checkbox" value="No" id="flash">
<span class="whiteText">Yes</span>
</div>

CSS:

.whiteText {
color: white;
}

或者通过用 style="color:white;" 替换类来使用内联样式。

关于javascript - 如何更改复选框旁边的文本颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26692994/

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