css 我想添加背景颜色绿色,但它不工作,如果我使用BG-黑色它的工作,但另一种颜色不工作?[关闭]

ht4b089n  于 2023-04-01  发布在  其他
关注(0)|答案(1)|浏览(149)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。

2天前关闭。
Improve this question
这td它工作与背景颜色黑色

<td class="border-t-0 px-6 align-center border-l-0 border-r-0 text-xs whitespace-nowrap p-4 text-center">
  <span class="bg-black text-green-500 rounded-full ">Orders</span>
</td>

enter image description here
当我改变bg-red-500它不工作

<td class="border-t-0 px-6 align-center border-l-0 border-r-0 text-xs whitespace-nowrap p-4 text-center">
   <span class="bg-green-500 text-white rounded-full ">Orders</span>
</td>

enter image description here
我想添加背景色到make状态

wqsoz72f

wqsoz72f1#

页面样式是由css控制的,你应该检查并修改你的css文件以使其正确。

.bg-green-500 {
   background-color: green;
}

相关问题