gpt4 book ai didi

radio-button - TailwindCSS - 选中单选按钮时更改标签

转载 作者:行者123 更新时间:2023-12-03 20:01:58 25 4
gpt4 key购买 nike

我看到 TailwindCSS checked:可以启用变体以在选中时更改输入元素,但是如何在选中时更改输入的标签?
这是相关的 Tailwind CSS docs .
下面的示例代码。
tailwind.config.js 中启用变体后, 放 checked:bg-green-300在 div 中或标签不起作用。它只适用于输入。

<div>
<label>
<input checked type="radio" name="option1" id="option1" className="hidden" />
<div>option1</div>
</label>
<label>
<input checked type="radio" name="option2" id="option1" className="hidden" />
<div>option2</div>
</label>
</div>

最佳答案

编辑:版本 2.2+ 发布后,它内置了对名为 peer 的兄弟选择器变体的支持。 (观看更新 release)

This feature is only available in Just-in-Time mode.

<label>
<input checked type="radio" name="option" id="option1" class="hidden peer" />
<div class="peer-checked:bg-red-600">option1</div>
</label>
对于低于 2.2 的版本:
您需要编写自己的插件来添加新变体。更多信息 here
例如,将其命名为 label-checked tailwind.config.js
const plugin = require('tailwindcss/plugin');

module.exports = {
purge: [],
darkMode: false, // or 'media' or 'class'
theme: {},
variants: {
extend: {
backgroundColor: ['label-checked'], // you need add new variant to a property you want to extend
},
},
plugins: [
plugin(({ addVariant, e }) => {
addVariant('label-checked', ({ modifySelectors, separator }) => {
modifySelectors(
({ className }) => {
const eClassName = e(`label-checked${separator}${className}`); // escape class
const yourSelector = 'input[type="radio"]'; // your input selector. Could be any
return `${yourSelector}:checked ~ .${eClassName}`; // ~ - CSS selector for siblings
}
)
})
}),
],
};
此配置应该适用于下一种情况(我们扩展了 backgroundColor,因此它应该适用于 bg-color 类):
1 - 标签是包装器,它的文本应该包装在任何选择器中(在这种情况下是 div)
<label>
<input checked type="radio" name="option1" id="option1" class="hidden" />
<div class="label-checked:bg-red-600">option1</div>
</label>
2 - 标签 输入
<input checked type="radio" name="option1" id="option1" class="hidden" />
<label for="option-1" class="label-checked:bg-red-600"></label>
演示 - https://play.tailwindcss.com/SEQ4NRpPV3

关于radio-button - TailwindCSS - 选中单选按钮时更改标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65784357/

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