VOOZH about

URL: https://www.geeksforgeeks.org/css/semantic-ui-menu-hover-state/

⇱ Semantic-UI Menu Hover State - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Semantic-UI Menu Hover State

Last Updated : 23 Jul, 2025

Semantic UI open-source framework gives icons or glyphs that are used to show pictures related to some elements using CSS and jQuery that is used to create great user interfaces. It is a development framework used to create beautiful and responsive layouts. Semantic UI Menu is a group of elements that displays different navigation actions. We can navigate to different pages of the website. A menu can be a combination of links, a search bar, and dropdowns. Semantic UI Menu Hover State provides a hover animation on the links. Items with links or class name links are hoverable.

Semantic UI Menu Hover State Classes:

  • a: Elements with a tag have the hover state.
  • link: Elements with this class the hover state.

Syntax: Make the elements as a links or link class as follows:

<div class="ui compact menu">
 <a class="item" href="#"> ... </a>
 <div class="link item"> ... </div>
</div>

Example: In the following example, we have some links with the hover state and the last item does not have the hover state.

Output

👁 Image

Reference: https://semantic-ui.com/collections/menu.html#hover

Comment