VOOZH about

URL: https://www.geeksforgeeks.org/css/semantic-ui-menu-size-variation/

⇱ Semantic-UI Menu Size Variation - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Semantic-UI Menu Size Variation

Last Updated : 5 Mar, 2022

Semantic UI is an open-source framework that uses CSS and jQuery to build great user interfaces. It is the same as a bootstrap for use and has great different elements to use to make your website look more amazing.

Semantic-UI Menu is used to display the grouped navigation menu. A navigation menu is used in every website to make it more user-friendly so that the navigation through the website becomes easy and the user can directly search for the topic of their interest.

Semantic-UI Menu Size Variation is used to change the size of the navigation menu. 

Semantic-UI Menu Size Variation Used Classes:

  • mini: It is used to set the menu size to mini.
  • tiny: It is used to set the menu size to tiny.
  • small: It is used to set the menu size to small.
  • large: It is used to set the menu size to large.
  • big: It is used to set the menu size to big.
  • huge: It is used to set the menu size to huge.
  • massive: It is used to set the menu size to massive.

Syntax:

<div class="ui *size menu">
 ...
</div>

Example 1: This example describes the uses of Semantic-UI Menu Size Variation.

Output:

👁 Image

Example 2: This example describes the uses of Semantic-UI Menu Size Variation.

Output:

👁 Image

Note: We can change the different size of class names to get the different sizes of navigation menu.

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

Comment