# daisyUI Documentation - Link Component Link adds the missing underline style to links. ## Classes and Usage ### Core Classes: - **link** - Adds underline - **link-hover** - Only shows underline on hover - **link-neutral** - neutral color - **link-primary** - primary color - **link-secondary** - secondary color - **link-accent** - accent color - **link-success** - success color - **link-info** - info color - **link-warning** - warning color - **link-error** - error color ## Examples ### Basic Link ```html Click me ``` ### Link with Tailwind Reset Tailwind CSS resets the style of links by default. Add "link" class to make it look like a again. ```html

Tailwind CSS resets the style of links by default.
Add "link" class to make it look like a normal link again.

``` ### Link Colors #### Primary color ```html Click me ``` #### Secondary color ```html Click me ``` #### Accent color ```html Click me ``` #### Neutral color ```html Click me ``` #### Success color ```html Click me ``` #### Info color ```html Click me ``` #### Warning color ```html Click me ``` #### Error color ```html Click me ``` ### Show Underline Only on Hover ```html Click me ``` ## Features - Adds underline style to links - Multiple color variants - Hover-only underline option - Works with Tailwind CSS reset styles This component is useful for creating styled links that have proper underline styling and can be customized with different colors.