• 2023-02-01

    CSSPoo reset

    Comments

    Start a discussion

    Here is our own reset CSS based on a few other ones.

    The snippet is long so you need to read more to see it.

    html,
    body {
      min-height: 100%;
    }
    
    * {
      padding: 0;
      margin: 0;
      text-decoration: none;
      font-size: 1rem;
      box-sizing: border-box;
    }
    
    *::before,
    *::after {
      box-sizing: border-box;
    }
    
    img {
      max-width: 100%;
      display: block;
    }
    
    input,
    button,
    textarea,
    select {
      font: inherit;
    }
    
    :focus {
      outline: none;
    }
    
    iframe {
      border: none;
    }
    
    ol,
    ul {
      list-style: none;
    }
    
    table {
      border-collapse: collapse;
    }

    Sources