Skip to content

Utilities: Resets

Liviu Voica edited this page Feb 5, 2021 · 2 revisions

To import this mixin just add the following line to your scss file: @import 'utilities/resets/_resets';

    @import '../global_functions/_global_functions';
    @import '../global_variables/_global_variables';
    @import '../box_model/_all-margin';
    @import '../box_model/_all-padding';
    @import '../box_model/_all-border';

    html, body, div, span, applet, object, iframe,
    h1, h2, h3, h4, h5, h6, p, blockquote, pre,
    a, abbr, acronym, address, big, cite, code,
    del, dfn, em, img, ins, kbd, q, s, samp,
    small, strike, strong, sub, sup, tt, var,
    b, u, i, center,
    dl, dt, dd, ol, ul, li,
    fieldset, form, label, legend,
    table, caption, tbody, tfoot, thead, tr, th, td,
    article, aside, canvas, details, embed, 
    figure, figcaption, footer, header, hgroup, 
    menu, nav, output, ruby, section, summary,
    time, mark, audio, video {
        @include all-margin (0px, 0px, 0px, 0px);
        @include all-padding (0px, 0px, 0px, 0px);
        @include all-border (0px, 0px, 0px, 0px);
    }
    blockquote, q {
        quotes: none;
    }
    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }
    table {
        border-collapse: collapse;
        border-spacing: 0rem;
    }
Clone this wiki locally