# tailwindcss-percentage-width

> This plugin add a new utility class so you can use from 0% to 100% in your widths.

Latest version **1.0.3** (published 2022-08-09) · ISC license · 0 weekly downloads

## Install

```sh
npm install tailwindcss-percentage-width
pnpm add tailwindcss-percentage-width
yarn add tailwindcss-percentage-width
bun add tailwindcss-percentage-width
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2022-08-09 |
| First published | 2021-03-09 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 1.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | David Rock |
| Maintainers | davidrocha |
| Keywords | tailwindcss, width, percentage, tailwind, plugin |

## Links

- npm: https://www.npmjs.com/package/tailwindcss-percentage-width
- Repository: https://github.com/davidrock/tailwindcss-percentage-width
- Homepage: https://github.com/davidrock/tailwindcss-percentage-width#readme
- Issues: https://github.com/davidrock/tailwindcss-percentage-width/issues
- npm.io page: https://npm.io/package/tailwindcss-percentage-width

## Alternatives

- [@sveltejs/kit](https://npm.io/package/@sveltejs/kit.md) — 2.2M weekly downloads
- [@atlaskit/theme](https://npm.io/package/@atlaskit/theme.md) — 402.0K weekly downloads
- [@tangle-network/brand](https://npm.io/package/@tangle-network/brand.md) — 10.0K weekly downloads
- [seneca](https://npm.io/package/seneca.md) — 7.4K weekly downloads
- [@bsb/base](https://npm.io/package/@bsb/base.md) — 7.2K weekly downloads

## Recent versions

- 1.0.3 (latest) — 2022-08-09
- 1.0.1 — 2021-03-09
- 1.0.0 — 2021-03-09

## README

# tailwindcss-percentage-width
This plugin add new utilities classes so you can use from 0% to 100% in your widths.

# Get Started
### Install the npm package into your project

    npm i tailwindcss-percentage-width

or

    yarn add tailwindcss-percentage-width

### Load the plugin in your `tailwind.config.js` file

    //tailwind.config.js
    const percentageWidth = require('tailwindcss-percentage-width'); // load the plugin
    module.exports = {
	    purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
	    darkMode:  false, // or 'media' or 'class'
	    theme: {},
	    variants: {
	       extend: {},
	    },
	    plugins: [
	        percentageWidth, // <== Add our plugin to the list of tailwind plugins
	        //other plugins...
	    ]
    };
    
    
## Just use it
![how to use](https://i.imgur.com/isk1mSs.png)

---
_Source: https://npm.io/package/tailwindcss-percentage-width · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
