Tailwind CSS에서 스트라이크 태그(잘라낸 텍스트)를 사용하는 방법

이 짧은 튜토리얼에서는 tailwind css에서 strike 태그(텍스트 잘라내기)를 사용하는 방법을 볼 것입니다.
view

예 1



"line-through"클래스를 사용하여 tailwind CSS에서 스트라이크 태그를 만들 수 있습니다.

<!DOCTYPE html>
<html lang="en">

  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Tailwind CSS Strike Example</title>
    <script src="https://cdn.tailwindcss.com"></script>
  </head>
  <body>
    <div class="flex items-center justify-center h-screen">
      <p class="line-through">strike tag (cut text) in tailwind css </p>
    </div>
  </body>

</html>




예 2



색상과 크기가 있는 순풍 파업 태그.

<p class="text-xl text-red-600 line-through">strike tag (cut text) red color in tailwind css </p>
<p class="text-xl text-green-600 line-through">strike tag (cut text) green color in tailwind css </p>
<p class="text-xl text-blue-600 line-through">strike tag (cut text) blue color in tailwind css </p>




예 3



순풍 호버 스트라이크 태그.

<p class="hover:line-through">Hover strike tag (cut text) in tailwind css </p>

좋은 웹페이지 즐겨찾기