Text Decoration

    Underline

    Use the utility to underline text.

    Use the .line-through utility to strike out text.

    Text Decoration - 图2

    1. <p class="line-through ...">The quick brown fox ...</p>

    No Underline

    Use the .no-underline utility to remove underline or line-through styling.

    1. <a href="#" class="no-underline ...">Link with no underline</a>

    To control the text decoration of an element at a specific breakpoint, add a {screen}: prefix to any existing text decoration utility. For example, use md:underline to apply the underline utility at only medium screen sizes and above.

    For more information about Tailwind’s responsive design features, check out the Responsive Design documentation.

    Text Decoration - 图4

    sm

    Text Decoration - 图6

    md

    lg

    Text Decoration - 图8

    xl

    The quick brown fox jumped over the lazy dog.

    Hover

    Hover utilities can also be combined with responsive utilities by adding the responsive {screen}: prefix before the hover: prefix.

    1. <a href="#" class="... md:no-underline md:hover:underline ...">Link</a>

    To control the text decoration of an element on focus, add the focus: prefix to any existing text decoration utility. For example, use focus:underline to apply the underline utility on focus.

    Text Decoration - 图10

    Focus utilities can also be combined with responsive utilities by adding the responsive {screen}: prefix before the focus: prefix.

    1. <input class="md:focus:underline ..." value="Focus me">

    Customizing

    By default, only responsive, hover and focus variants are generated for text decoration utilities.

    You can control which variants are generated for the text decoration utilities by modifying the textDecoration property in the section of your tailwind.config.js file.

    For example, this config will also generate active and group-hover variants:

    1. module.exports = {
    2. variants: {
    3. // ...
    4. - textDecoration: ['responsive', 'hover', 'focus'],
    5. + textDecoration: ['responsive', 'hover', 'focus', 'active', 'group-hover'],
    6. }
    7. }

    Disabling

    If you don’t plan to use the text decoration utilities in your project, you can disable them entirely by setting the textDecoration property to in the corePlugins section of your config file: