1. tachyons-z-index
Tachyons css module for setting z-index on elements
tachyons-z-index
Package: tachyons-z-index
Created by: tachyons-css
Last modified: Mon, 27 Jun 2022 03:34:33 GMT
Version: 1.0.10
License: ISC
Downloads: 23
Repository: https://github.com/tachyons-css/tachyons-z-index

Install

npm install tachyons-z-index
yarn add tachyons-z-index

tachyons-z-index 1.0.10

Tachyons css module for setting z-index on elements

Stats

510 12 12
bytes selectors declarations

Installation

With npm

npm install --save-dev tachyons-z-index

Learn more about using css installed with npm:

  • https://webpack.github.io/docs/stylesheets.html
  • https://github.com/defunctzombie/npm-css

With Git

http:

git clone https://github.com/tachyons-css/tachyons-z-index

ssh:

git clone [email protected]:tachyons-css/tachyons-z-index.git

Usage

Using with Postcss

Import the css module

 @import "tachyons-z-index";

Then process the css using the tachyons-cli

 $ npm i -g tachyons-cli
$ tachyons path/to/css-file.css > dist/t.css

Using the css

CDN

The easiest and most simple way to use the css is to use the cdn hosted version. Include it in the head of your html with:

<link rel="stylesheet" href="http://unpkg.com/[email protected]/css/tachyons-z-index.min.css" />
Locally

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.

 <link rel="stylesheet" href="path/to/module/css/tachyons-z-index">

Development

The source css files can be found in the src directory.
Running $ npm start will process the source css and place the built css in the css directory.

The css

 /*

  Z-INDEX

  Base
    z = z-index

  Modifiers
    -0 = literal value 0
    -1 = literal value 1
    -2 = literal value 2
    -3 = literal value 3
    -4 = literal value 4
    -5 = literal value 5
    -999 = literal value 999
    -9999 = literal value 9999

    -max = largest accepted z-index value as integer

    -inherit = string value inherit
    -initial = string value initial
    -unset = string value unset

  MDN: https://developer.mozilla.org/en/docs/Web/CSS/z-index
  Spec: http://www.w3.org/TR/CSS2/zindex.html
  Articles:
    https://philipwalton.com/articles/what-no-one-told-you-about-z-index/

  Tips on extending:
  There might be a time worth using negative z-index values.
  Or if you are using tachyons with another project, you might need to
  adjust these values to suit your needs.

*/
.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }
.z-4 { z-index: 4; }
.z-5 { z-index: 5; }
.z-999 { z-index: 999; }
.z-9999 { z-index: 9999; }
.z-max { z-index: 2147483647; }
.z-inherit { z-index: inherit; }
.z-initial { z-index: initial; }
.z-unset { z-index: unset; }

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

Authors

License

ISC

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code