Skip to main content

Archive

Show more

Foundation CSS Button Group

Foundation CSS Button Group

Foundation CSS provides a Button Group component that enables you to group multiple buttons together for better organization and presentation. Button groups are commonly used to represent related actions or options in a compact and visually appealing manner. Here's how you can create a button group using Foundation CSS:


1. Basic Button Group

A basic button group consists of multiple buttons placed adjacent to each other horizontally.

Example markup:

<div class="button-group">
  <a href="#" class="button">Button 1</a>
  <a href="#" class="button">Button 2</a>
  <a href="#" class="button">Button 3</a>
</div>

2. Vertical Button Group

You can also arrange buttons vertically by adding the vertical class to the button group.

Example markup:

<div class="button-group vertical">
  <a href="#" class="button">Button 1</a>
  <a href="#" class="button">Button 2</a>
  <a href="#" class="button">Button 3</a>
</div>

3. Nested Button Group

You can nest button groups within each other to create more complex layouts.

Example markup:

<div class="button-group">
  <a href="#" class="button">Button 1</a>
  <div class="button-group">
    <a href="#" class="button">Button 2</a>
    <a href="#" class="button">Button 3</a>
  </div>
  <a href="#" class="button">Button 4</a>
</div>

Conclusion

Button groups in Foundation CSS offer a convenient way to organize and present multiple buttons in your web applications. Whether you need a simple horizontal layout or a more complex nested structure, Foundation CSS makes it easy to create versatile and visually appealing button groups.

Comments