</div>
```
-## Hollow
+---
+
+## Hollow and clear
-Buttons within a button group can be given hollow style individually by adding a class `.hollow` respectively.
+Buttons within a button group can be given hollow and clear styles individually by adding a class `.hollow` or `.clear` respectively.
```html_example
<div class="button-group">
<a class="warning button hollow">Share</a>
<a class="alert button hollow">Delete</a>
</div>
+
+<div class="button-group">
+ <a class="secondary button clear">View</a>
+ <a class="success button clear">Edit</a>
+ <a class="warning button clear">Share</a>
+ <a class="alert button clear">Delete</a>
+</div>
```
-The entire group can also be given hollow style using the same class.
+The entire group can also be given hollow or clear styles using the same class.
```html_example
-<div class="primary button-group hollow">
- <a class="button">Harder</a>
- <a class="button">Better</a>
- <a class="button">Faster</a>
- <a class="button">Stronger</a>
+<div class="button-group hollow">
+ <a class="secondary button">View</a>
+ <a class="success button">Edit</a>
+ <a class="warning button">Share</a>
+ <a class="alert button">Delete</a>
+</div>
+
+<div class="button-group clear">
+ <a class="secondary button">View</a>
+ <a class="success button">Edit</a>
+ <a class="warning button">Share</a>
+ <a class="alert button">Delete</a>
</div>
```
+---
+
## No Gaps
When using a single color for the button-group, you might want to remove the `1px` spacing between the buttons. You can use `no-gaps` to just the same.
</div>
```
-The class `no-gaps` also works for hollow style.
+You can use `no-gaps` on `hollow` styles.
```html_example
<div class="primary button-group hollow no-gaps">
</div>
```
+You can use `no-gaps` with all grouped/individual styles.
+
+```html_example
+<div class="button-group no-gaps">
+ <a class="secondary button">View</a>
+ <a class="success button">Share</a>
+ <a class="warning button hollow">Edit</a>
+ <a class="alert button clear">Delete</a>
+</div>
+```
+
---
## Even-width Group