gpt4 book ai didi

javascript - 为什么不顺风覆盖本地定义的样式?

转载 作者:行者123 更新时间:2023-12-04 11:21:44 24 4
gpt4 key购买 nike

我正在尝试通过 tailwindcss 样式更改文本的默认颜色。但我不明白为什么它不起作用。但是 Bootstrap 确实会覆盖默认样式。
我只是tailwindcss的新手。有人可以告诉我这里发生了什么吗?
Here you can editd in codesandbox

<template>
<div class="hello">
<h1 class="origintxt text-green-400">{{ msg }}</h1>
</div>
</template>

<script>
export default {
name: "HelloWorld",
props: {
msg: String
}
};
</script>


<style scoped>

.origintxt {
color: black;
}

</style>

最佳答案

问题在于我的 tailwind.config.js文件。刚刚在阅读文档时发现了这一点。
默认情况下,顺风的所有 css 都没有 !important 生成。 .要启用它,您必须添加 important: true在配置文件中。然后它将覆盖以前的类属性。

// tailwind.config.js

module.exports = {
important: true,
}

关于javascript - 为什么不顺风覆盖本地定义的样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62606861/

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