Tailwind CSS tutorial #27: Text Underline Offset

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

Text Decoration

Format

underline-offset-{width}

Tailwind Class
CSS Property

underline-offset-auto
text-underline-offset: auto;

underline-offset-0
text-…


This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by Shubhangi✨

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

Text Decoration

Format

underline-offset-{width}

Tailwind Class CSS Property
underline-offset-auto text-underline-offset: auto;
underline-offset-0 text-underline-offset: 0px;
underline-offset-1 text-underline-offset: 1px;
underline-offset-2 text-underline-offset: 2px;
underline-offset-4 text-underline-offset: 4px;
underline-offset-8 text-underline-offset: 8px;

Setting the underline offset

Use the underline-offset-{width} utilities to change the offset of a text underline.

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 underline-offset-1">
    <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-offset-1   </div>
  </li>
  <li class="flex items-center justify-between px-4 py-2">
    <ul class="underline  underline-offset-2    ">
    <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-offset-2   </div>
  </li>
    <li class="flex items-center justify-between px-4 py-2">
    <ul class=" underline underline-offset-4        ">
    <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-offset-4   </div>
  </li>
    <li class="flex items-center justify-between px-4 py-2">
    <ul class=" underline underline-offset-8        ">
    <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-offset-8   </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!! đź’›


This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by Shubhangi✨


Print Share Comment Cite Upload Translate Updates
APA

Shubhangi✨ | Sciencx (2022-12-04T17:21:17+00:00) Tailwind CSS tutorial #27: Text Underline Offset. Retrieved from https://www.scien.cx/2022/12/04/tailwind-css-tutorial-27-text-underline-offset/

MLA
" » Tailwind CSS tutorial #27: Text Underline Offset." Shubhangi✨ | Sciencx - Sunday December 4, 2022, https://www.scien.cx/2022/12/04/tailwind-css-tutorial-27-text-underline-offset/
HARVARD
Shubhangi✨ | Sciencx Sunday December 4, 2022 » Tailwind CSS tutorial #27: Text Underline Offset., viewed ,<https://www.scien.cx/2022/12/04/tailwind-css-tutorial-27-text-underline-offset/>
VANCOUVER
Shubhangi✨ | Sciencx - » Tailwind CSS tutorial #27: Text Underline Offset. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/12/04/tailwind-css-tutorial-27-text-underline-offset/
CHICAGO
" » Tailwind CSS tutorial #27: Text Underline Offset." Shubhangi✨ | Sciencx - Accessed . https://www.scien.cx/2022/12/04/tailwind-css-tutorial-27-text-underline-offset/
IEEE
" » Tailwind CSS tutorial #27: Text Underline Offset." Shubhangi✨ | Sciencx [Online]. Available: https://www.scien.cx/2022/12/04/tailwind-css-tutorial-27-text-underline-offset/. [Accessed: ]
rf:citation
» Tailwind CSS tutorial #27: Text Underline Offset | Shubhangi✨ | Sciencx | https://www.scien.cx/2022/12/04/tailwind-css-tutorial-27-text-underline-offset/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.