Skip to content

Instantly share code, notes, and snippets.

@CyrusYip
Forked from FrankFang/cssreset.css
Created June 13, 2021 13:32
Show Gist options
  • Select an option

  • Save CyrusYip/60dc98a2b487cfea0786eb409b2060b9 to your computer and use it in GitHub Desktop.

Select an option

Save CyrusYip/60dc98a2b487cfea0786eb409b2060b9 to your computer and use it in GitHub Desktop.

Revisions

  1. @FrankFang FrankFang revised this gist Aug 14, 2019. 1 changed file with 16 additions and 16 deletions.
    32 changes: 16 additions & 16 deletions cssreset.css
    Original file line number Diff line number Diff line change
    @@ -1,25 +1,25 @@
    *{
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    *::before, *::after{
    *::before,
    *::after {
    box-sizing: border-box;
    }
    a {color: inherit; text-decoration: none;}
    input, button { font-family: inherit; }
    ol, ul {
    list-style: none;
    a {
    color: inherit;
    text-decoration: none;
    }
    table {
    border-collapse: collapse;
    border-spacing: 0;
    input,
    button {
    font-family: inherit;
    }
    ol,
    ul {
    list-style: none;
    }
    blockquote, q {
    quotes: none;
    table {
    border-collapse: collapse;
    border-spacing: 0;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
    content: '';
    content: none;
    }
  2. @FrankFang FrankFang created this gist Aug 14, 2019.
    25 changes: 25 additions & 0 deletions cssreset.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,25 @@
    *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    *::before, *::after{
    box-sizing: border-box;
    }
    a {color: inherit; text-decoration: none;}
    input, button { font-family: inherit; }
    ol, ul {
    list-style: none;
    }
    table {
    border-collapse: collapse;
    border-spacing: 0;
    }
    blockquote, q {
    quotes: none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
    content: '';
    content: none;
    }