# Dividers
Horizontal and vertical rule styling.
```astro
	Above the divider.
	
	Below the divider.
 
```
## Size
Use Tailwind's [border width](https://tailwindcss.com/docs/border-width) utilities to adjust thickness.
```astro
	Default
	
	border-t-2
	
	border-t-4
	
	border-t-8
	
```
## Style
Use Tailwind's [border style](https://tailwindcss.com/docs/border-style) utilities to adjust visual style.
```astro
	border-solid
	
	border-dashed
	
	border-dotted
	
	border-double
	
```
## Colors
Use any Tailwind or Skeleton [colors or pairing](/docs/design/colors).
```astro
	border-primary-500
	
	border-secondary-500
	
	border-tertiary-500
	
	border-success-500
	
	border-warning-500
	
	border-error-500
	
	border-surface-950-50
	
```
## Vertical
Use `vr` for a vertical rule, which supports all above styles. Make sure to set the height.
```astro
	Default →
	
	
	
	
	← border-l-8
```