我尝试为tailwindcss中的文本指定颜色,但浏览器中未显示任何颜色

2fjabf4q  于 2022-12-05  发布在  其他
关注(0)|答案(1)|浏览(185)

颜色类拒绝对我的html标记产生任何影响

<!doctype html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link href="output.css" rel="stylesheet">
    </head>
    <body>
        <h1 class="text-yellow-400 font-bold">
            Hello world!
        </h1>
    </body>
</html>

This is the outcome of the code

stszievb

stszievb1#

尝试使用CDN添加Tailwind。

<!doctype html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <script src="https://cdn.tailwindcss.com"></script>
    </head>
    <body>
        <h1 class="text-yellow-400 font-bold">
            Hello world!
        </h1>
    </body>
</html>

相关问题