Css module of single purpose classes for word wrap
Css module of single purpose classes for word wrap
#### Stats
183 | 12 | 12
---|---|---
bytes | selectors | declarations
#### With npm
```
npm install --save-dev css-word-wrap
#### With Git
``
git clone https://github.com/tachyons-css/css-word-wrap
#### Using with PostCSS
Import the css module
`css`
@import "css-word-wrap";
Then process the CSS using the tachyons-cli
`sh`
$ npm i -g tachyons-cli
$ tachyons-cli path/to/css-file.css > dist/t.css
#### Using the CSS
The built CSS is located in the css directory. It contains an unminified and minified version.
You can either cut and paste that css or link to it directly in your html.
`html`
#### Development
The source CSS files can be found in the src directory.$ npm start
Running will process the source CSS and place the built CSS in the css directory.
`css`
/*
WORD WRAP
*/
.wwn { word-wrap: normal; }
.wwbw { word-wrap: break-word; }
.wwi { word-wrap: inherit; }
@media screen and (min-width: 48em) {
.wwn-ns { word-wrap: normal; }
.wwbw-ns { word-wrap: break-word; }
.wwi-ns { word-wrap: inherit; }
}
@media screen and (min-width:48em) and (max-width: 64em) {
.wwn-m { word-wrap: normal; }
.wwbw-m { word-wrap: break-word; }
.wwi-m { word-wrap: inherit; }
}
@media screen and (min-width: 64em) {
.wwn-l { word-wrap: normal; }
.wwbw-l { word-wrap: break-word; }
.wwi-l { word-wrap: inherit; }
}
1. Fork it
2. Create your feature branch (git checkout -b my-new-feature)git commit -am 'Add some feature'
3. Commit your changes ()git push origin my-new-feature`)
4. Push to the branch (
5. Create new Pull Request
ISC