Tailwind CSS에서 선택한 텍스트 강조 표시를 사용하는 방법
2203 단어 tutorialtailwindcsscsswebdev
예 1
Tailwind CSS 하이라이트 섹션 텍스트 색상.
<div class="max-w-xl selection:text-purple-900">
<p>
Tailwind CSS color selector lorem ipsum dolor I made my way past the breakers
a strange calm came over me
</p>
</div>
예 2
Tailwind CSS 하이라이트 섹션 배경색.
<div class="max-w-xl selection:bg-purple-600">
<p>
Tailwind CSS color selector lorem ipsum dolor I made my way past the breakers
a strange calm came over me
</p>
</div>
예 3
Tailwind CSS는 선택 배경색과 텍스트 색상을 강조 표시합니다.
<div class="max-w-xl selection:bg-purple-300 selection:text-purple-900">
<p>
Tailwind CSS color selector lorem ipsum dolor I made my way past the breakers
a strange calm came over me
</p>
</div>
Reference
이 문제에 관하여(Tailwind CSS에서 선택한 텍스트 강조 표시를 사용하는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/larainfo/how-to-use-highlight-selected-text-in-tailwind-css-1hj3텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)