Tailwind CSS에서 스트라이크 태그(잘라낸 텍스트)를 사용하는 방법
3550 단어 tutorialtailwindcsscsswebdev
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>
Reference
이 문제에 관하여(Tailwind CSS에서 스트라이크 태그(잘라낸 텍스트)를 사용하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/larainfo/how-to-use-strike-tag-cut-text-in-tailwind-css-5e7h텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)