Tailwind CSS でテキスト/見出しに線形グラデーションを追加する方法は? これを使って背景にこれを追加することはできましたが
<h2 className="text-4xl w-full text-white font-extrabold bg-gradient-to-r from-sky-500/20 to-sky-500/75">
Welcome To <br /> My Personal PortFolio
</h2>
Tailwind CSS でテキスト/見出しに線形グラデーションを追加する方法は? これを使って背景にこれを追加することはできましたが
<h2 className="text-4xl w-full text-white font-extrabold bg-gradient-to-r from-sky-500/20 to-sky-500/75">
Welcome To <br /> My Personal PortFolio
</h2>
追加
-webkit-background-clip: text; /* apply background clip */
-webkit-text-fill-color: transparent;
テキストクリップをグラデーションにする
h2 {
font-size: 48px;
font-weight: 800;
margin: 0;
}
h2.gradient-text {
background: -webkit-linear-gradient(45deg, #09009f, #00ff95 80%);
-webkit-background-clip: text; /* apply background clip */
-webkit-text-fill-color: transparent;
}
<h2 class="gradient-text text-4xl w-full text-white font-extrabold bg-gradient-to-r from-sky-500/20 to-sky-500/75">
Welcome To <br /> My Personal PortFolio
</h2>