Cookie Consent by Free Privacy Policy Generator ๐Ÿ“Œ Tailwind CSS tutorial #26: Text Decoration

๐Ÿ  Team IT Security News

TSecurity.de ist eine Online-Plattform, die sich auf die Bereitstellung von Informationen,alle 15 Minuten neuste Nachrichten, Bildungsressourcen und Dienstleistungen rund um das Thema IT-Sicherheit spezialisiert hat.
Ob es sich um aktuelle Nachrichten, Fachartikel, Blogbeitrรคge, Webinare, Tutorials, oder Tipps & Tricks handelt, TSecurity.de bietet seinen Nutzern einen umfassenden รœberblick รผber die wichtigsten Aspekte der IT-Sicherheit in einer sich stรคndig verรคndernden digitalen Welt.

16.12.2023 - TIP: Wer den Cookie Consent Banner akzeptiert, kann z.B. von Englisch nach Deutsch รผbersetzen, erst Englisch auswรคhlen dann wieder Deutsch!

Google Android Playstore Download Button fรผr Team IT Security



๐Ÿ“š Tailwind CSS tutorial #26: Text Decoration


๐Ÿ’ก Newskategorie: Programmierung
๐Ÿ”— Quelle: dev.to

In the article, we will go into detail on how to use Text Decoration.

Text Decoration

Format

text-decoration-line{underline|overline|line-through|no-underline}

Tailwind Class CSS Property
underline text-decoration-line: underline;
overline text-decoration-line: overline;
line-through text-decoration-line: line-through ;
no-underline text-decoration-line: no-underline;

Control how text is decorated with the underline, no-underline, andline-through utilities.

Code

 <ul class="container mx-auto divide-y divide-gray-400 divide-dotted" style="font-family: Raleway">
  <li class="flex items-center justify-between px-4 py-2">
    <ul class="underline">
    <li>Now this is a story all about how, my life got flipped-turned upside down</li>
    </ul>
    <div class="text-xs font-semibold font-mono whitespace-nowrap px-2 py-1 ml-5 rounded text-white bg-pink-500 rounded-2">underline    </div>
  </li>
  <li class="flex items-center justify-between px-4 py-2">
    <ul class=" overline    ">
    <li>Now this is a story all about how, my life got flipped-turned upside down</li>
    </ul>
    <div class="text-xs font-semibold font-mono whitespace-nowrap px-2 py-1 ml-5 rounded text-white bg-pink-500 rounded-2">overline </div>
  </li>
    <li class="flex items-center justify-between px-4 py-2">
    <ul class=" line-through        ">
    <li>Now this is a story all about how, my life got flipped-turned upside down</li>
    </ul>
    <div class="text-xs font-semibold font-mono whitespace-nowrap px-2 py-1 ml-5 rounded text-white bg-pink-500 rounded-2">line-through     </div>
  </li>
    <li class="flex items-center justify-between px-4 py-2">
    <ul class=" no-underline        ">
    <li>Now this is a story all about how, my life got flipped-turned upside down</li>
    </ul>
    <div class="text-xs font-semibold font-mono whitespace-nowrap px-2 py-1 ml-5 rounded text-white bg-pink-500 rounded-2">no-underline     </div>
  </li>
</ul> 

Full code:
The overall code will be attached to repo link.

Overall Output
Image description

Resources:
tailwind.css

Thank you for reading :), To learn more, check out my blogs on Flex Direction, Hackathons and Flex Wrap.
If you liked this article, consider following me on Dev.to for my latest publications. You can reach me on Twitter.

Keep learning! Keep coding!! ๐Ÿ’›

...



๐Ÿ“Œ Tailwind CSS tutorial #26: Text Decoration


๐Ÿ“ˆ 68.94 Punkte

๐Ÿ“Œ Tailwind CSS tutorial #31: Text Decoration Style


๐Ÿ“ˆ 68.94 Punkte

๐Ÿ“Œ Choosing the Right CSS Approach: Tailwind CSS vs Bootstrap vs Vanillaย CSS


๐Ÿ“ˆ 42.56 Punkte

๐Ÿ“Œ Tailwind CSS tutorial #25: Text Align


๐Ÿ“ˆ 41.38 Punkte

๐Ÿ“Œ Tailwind CSS tutorial #27: Text Underline Offset


๐Ÿ“ˆ 41.38 Punkte

๐Ÿ“Œ Tailwind CSS tutorial #28: Text Transform


๐Ÿ“ˆ 41.38 Punkte

๐Ÿ“Œ Tailwind CSS tutorial #30: Text Overflow


๐Ÿ“ˆ 41.38 Punkte

๐Ÿ“Œ Creating an animated text gradient with Tailwind CSS (and vanilla CSS)


๐Ÿ“ˆ 41.22 Punkte

๐Ÿ“Œ Techotronic all-in-one-favicon Plugin 4.6 on WordPress Apple-Text/GIF-Text/ICO-Text/PNG-Text/JPG-Text Persistent cross site scripting


๐Ÿ“ˆ 40.34 Punkte

๐Ÿ“Œ How to create navigation menu with HTML CSS step by step | web design tutorial | HTML CSS tutorial


๐Ÿ“ˆ 37.97 Punkte

๐Ÿ“Œ Tailwind CSS tutorial #22: Line Height


๐Ÿ“ˆ 33.31 Punkte

๐Ÿ“Œ Tailwind CSS tutorial #23: List Style Type


๐Ÿ“ˆ 33.31 Punkte

๐Ÿ“Œ Tailwind CSS tutorial #24: List Style Position


๐Ÿ“ˆ 33.31 Punkte

๐Ÿ“Œ Tailwind CSS tutorial #29: Vertical Align


๐Ÿ“ˆ 33.31 Punkte

๐Ÿ“Œ Tailwind CSS tutorial #32: Screen Readers


๐Ÿ“ˆ 33.31 Punkte

๐Ÿ“Œ Tailwind CSS tutorial #33: Border Radius


๐Ÿ“ˆ 33.31 Punkte

๐Ÿ“Œ Next.js, Tailwind CSS, and MongoDB Project Tutorial โ€“ Ticketing App


๐Ÿ“ˆ 33.31 Punkte

๐Ÿ“Œ Complete React and Tailwind CSS Website Design Tutorial | Build an Educational Landing Page


๐Ÿ“ˆ 33.31 Punkte

๐Ÿ“Œ Beginner Web Dev Project Tutorial โ€“ Weather App with Next.js, Tailwind CSS, and TypeScript


๐Ÿ“ˆ 33.31 Punkte

๐Ÿ“Œ Full Stack Tutorial โ€“ Fiverr Clone with NextJS, React, Convex, Typescript, Tailwind CSS, ShadCN


๐Ÿ“ˆ 33.31 Punkte

๐Ÿ“Œ Build a Tic Tac Toe Game using HTML, CSS, JavaScript, Tailwind CSS and Canvas Confetti


๐Ÿ“ˆ 33.15 Punkte

๐Ÿ“Œ Tailwind CSS vs Foundation: A Comparison of CSS Frameworks


๐Ÿ“ˆ 33.15 Punkte

๐Ÿ“Œ Mojo CSS vs. Tailwind: Choosing the best CSS framework


๐Ÿ“ˆ 33.15 Punkte

๐Ÿ“Œ Tailwind CSS vs. CSS Frameworks: A Comprehensive Comparison for UI Design


๐Ÿ“ˆ 33.15 Punkte

๐Ÿ“Œ Why Tailwind CSS is still better than StyleX and other CSS libraries


๐Ÿ“ˆ 33.15 Punkte

๐Ÿ“Œ How to Add a Text Indent in Tailwind CSS


๐Ÿ“ˆ 31.81 Punkte

๐Ÿ“Œ Create a Gradient Text Reveal on Scroll with Tailwind CSS and JS


๐Ÿ“ˆ 31.81 Punkte

๐Ÿ“Œ How To Use META AI (Complete Tutorial) Beginner Tutorial (LLAMA 3 Tutorial)


๐Ÿ“ˆ 28.71 Punkte

๐Ÿ“Œ Create reusable button Components with React,Typescript , Tailwind and Tailwind-variants


๐Ÿ“ˆ 28.65 Punkte

๐Ÿ“Œ CSS tutorial series: CSS Units and Sizing


๐Ÿ“ˆ 28.4 Punkte

๐Ÿ“Œ CSS Grid: Moving From CSS Frameworks To CSS Grid (2018 and beyond)


๐Ÿ“ˆ 28.24 Punkte

๐Ÿ“Œ Stylify CSS: Automagic CSS bundles splitting into CSS layers in Astro.build


๐Ÿ“ˆ 28.24 Punkte

๐Ÿ“Œ A BRIEF REVIEW OF CSS CASCADING, CSS SELECTORS and CSS SPECIFICITY.


๐Ÿ“ˆ 28.24 Punkte

๐Ÿ“Œ This is what Client Side Decoration is


๐Ÿ“ˆ 27.57 Punkte

๐Ÿ“Œ XDG-Decoration support (Mutter issue #217)


๐Ÿ“ˆ 27.57 Punkte











matomo