0.1.2 • Published 2 years ago
tailwindcss-center v0.1.2
tailwindcss-center
A TailwindCSS plugin that adds centering utilities.
Install
npm install --save-dev tailwindcss-centeryarn add --dev tailwindcss-centerAdd the plugin to your Tailwind config:
import tailwindPluginCenter from "tailwindcss-center";
export default {
theme: {
// ...
},
plugins: [
tailwindPluginCenter,
],
};module.exports = {
theme: {
// ...
},
plugins: [
require("tailwindcss-center"),
],
};Usage
Utilities are provided for centering with Flexbox, CSS Grid, absolute positioning, and auto margins:
<div class="center-flex">
<!-- ... -->
</div>Centering can also be applied individually to a specific axis:
<div class="center-flex-x">
<!-- ... -->
</div>
<div class="center-flex-y">
<!-- ... -->
</div>Provided Utilities
Flex
center-flexcenter-flex-xcenter-flex-y
Grid
center-gridcenter-grid-xcenter-grid-y
Absolute
center-absolutecenter-absolute-xcenter-absolute-y
Margin
center-margincenter-margin-xcenter-margin-y
Related
- @marcoguidara/tailwind-quick-center - A plugin that provides utilities for centering an element on x/y axis.