gpt4 book ai didi

javascript - 如何自定义颜色tailwind css上的直通文本装饰

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

我想自定义宽度线“line-through”变得更粗,如 4-6px。我在tailwind.config.js 上自定义了粗线“line-through”,但它不起作用,也许你可以就我的问题给我建议。

//setting tailwind.config.js in plugin:[]    
function ({addUtilities}) {
const extendLineThrough = {
'.line-through': {
'textDecoration': 'line-through',
'text-decoration-color': 'red',
'text-decoration-width': '4px'
},
}
addUtilities(extendLineThrough)
}
<div class="hidden sm:block md:col-span-2 text-rigt">
<p class="md:pt-1 text-gray-500 line-through">
Rp. 8000
</p>
</div>

最佳答案

正确的 css 属性是 text-decoration-thickness所以你的插件应该是:

function ({addUtilities}) {
const extendLineThrough = {
'.line-through': {
'textDecoration': 'line-through',
'text-decoration-color': 'red',
'text-decoration-thickness': '4px'
},
}
addUtilities(extendLineThrough)
}
Here是 Tailwind Play 上的工作版本。

关于javascript - 如何自定义颜色tailwind css上的直通文本装饰,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67188630/

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