Skip to content

filipelinhares/cssguard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CSS Guard Build Status

An easy way to test your CSS.

Install

npm install --save-dev cssguard

Usage

  1. cd into-my-project
  2. mkdir test && cd $_ && touch test.html
  3. Install with npm commands
  4. Load the csstest.css file into your html.
@import '../node_modules/cssguard/cssguard.css';

or

<link rel="stylesheet" href="../node_modules/cssguard/dist/cssguard.min.css">
  1. Create your test suite
<main class="test-suite">
  <h1 class="test-suite-title">Project name</h1>
  <section>
    <h1 class="test-module">Test section</h1>
    <h3 class="test-it">The test <code>.example-code</code></h3>
    <div class="test-run">
      <p>Some test here</p>
    </div>
  </section>
</main>
  1. Test your component :D

API

  • .test-suite
  • .test-suite-title
  • .test-module
  • .test-it
  • .test-run

License

MIT © Filipe Linhares