Socket
Socket
Sign inDemoInstall

semantic-ui-css

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

semantic-ui-css

CSS Only distribution of Semantic UI


Version published
Weekly downloads
123K
increased by9.05%
Maintainers
1
Weekly downloads
 
Created

What is semantic-ui-css?

The semantic-ui-css package provides the CSS and JavaScript files for the Semantic UI framework, which is a comprehensive UI component library. It allows developers to create responsive, themable, and modern web interfaces with ease.

What are semantic-ui-css's main functionalities?

Buttons

Semantic UI provides a variety of button styles, including primary, secondary, and other variations. The above code demonstrates how to create a primary button.

<button class='ui primary button'>Primary Button</button>

Forms

Semantic UI offers a wide range of form elements and styles. The above code shows a simple form with a text input and a submit button.

<form class='ui form'><div class='field'><label>Name</label><input type='text' name='name' placeholder='Name'></div><button class='ui button' type='submit'>Submit</button></form>

Grids

Semantic UI's grid system allows for responsive layouts. The above code demonstrates a simple grid with three columns, each taking up four grid spaces.

<div class='ui grid'><div class='four wide column'>Column 1</div><div class='four wide column'>Column 2</div><div class='four wide column'>Column 3</div></div>

Menus

Semantic UI provides a variety of menu styles for navigation. The above code shows a simple horizontal menu with three items.

<div class='ui menu'><a class='item'>Home</a><a class='item'>About</a><a class='item'>Contact</a></div>

Modals

Semantic UI includes modal components for dialogs and pop-ups. The above code demonstrates a basic modal with a title, content, and a close button.

<div class='ui modal'><div class='header'>Modal Title</div><div class='content'><p>This is a modal</p></div><div class='actions'><div class='ui button'>Close</div></div></div>

Other packages similar to semantic-ui-css

FAQs

Package last updated on 06 Oct 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc