How to rebuild bootstrap-grid.css from scss files

Multi tool use
Multi tool use











up vote
0
down vote

favorite












I am trying to recompile bootstrap-grid.css from its SASS files which are in .scss format.
These .scss files are the ones provided here under "Source files".



Current bootstrap version is v4.13



Right now, I am performing the following;



sass bootstrap-grid.scss bootstrap-grid.css


However, when I compare the bootstrap-grid.css that I have manually created with the bootstrap-grid.css that is readily downloadable, the results are different.










share|improve this question
























  • Can you explain exactly how the 2 files are different? Is your generated version missing classes that the orginal bootstrap-grid.css contains?
    – Zim
    15 hours ago










  • The generated version is missing alot of "ms-*" properties , that are present in the readily downloadable version.
    – Yoong Tat
    14 hours ago















up vote
0
down vote

favorite












I am trying to recompile bootstrap-grid.css from its SASS files which are in .scss format.
These .scss files are the ones provided here under "Source files".



Current bootstrap version is v4.13



Right now, I am performing the following;



sass bootstrap-grid.scss bootstrap-grid.css


However, when I compare the bootstrap-grid.css that I have manually created with the bootstrap-grid.css that is readily downloadable, the results are different.










share|improve this question
























  • Can you explain exactly how the 2 files are different? Is your generated version missing classes that the orginal bootstrap-grid.css contains?
    – Zim
    15 hours ago










  • The generated version is missing alot of "ms-*" properties , that are present in the readily downloadable version.
    – Yoong Tat
    14 hours ago













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am trying to recompile bootstrap-grid.css from its SASS files which are in .scss format.
These .scss files are the ones provided here under "Source files".



Current bootstrap version is v4.13



Right now, I am performing the following;



sass bootstrap-grid.scss bootstrap-grid.css


However, when I compare the bootstrap-grid.css that I have manually created with the bootstrap-grid.css that is readily downloadable, the results are different.










share|improve this question















I am trying to recompile bootstrap-grid.css from its SASS files which are in .scss format.
These .scss files are the ones provided here under "Source files".



Current bootstrap version is v4.13



Right now, I am performing the following;



sass bootstrap-grid.scss bootstrap-grid.css


However, when I compare the bootstrap-grid.css that I have manually created with the bootstrap-grid.css that is readily downloadable, the results are different.







css sass bootstrap-4






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 9 hours ago









James Z

11.1k71735




11.1k71735










asked 15 hours ago









Yoong Tat

405




405












  • Can you explain exactly how the 2 files are different? Is your generated version missing classes that the orginal bootstrap-grid.css contains?
    – Zim
    15 hours ago










  • The generated version is missing alot of "ms-*" properties , that are present in the readily downloadable version.
    – Yoong Tat
    14 hours ago


















  • Can you explain exactly how the 2 files are different? Is your generated version missing classes that the orginal bootstrap-grid.css contains?
    – Zim
    15 hours ago










  • The generated version is missing alot of "ms-*" properties , that are present in the readily downloadable version.
    – Yoong Tat
    14 hours ago
















Can you explain exactly how the 2 files are different? Is your generated version missing classes that the orginal bootstrap-grid.css contains?
– Zim
15 hours ago




Can you explain exactly how the 2 files are different? Is your generated version missing classes that the orginal bootstrap-grid.css contains?
– Zim
15 hours ago












The generated version is missing alot of "ms-*" properties , that are present in the readily downloadable version.
– Yoong Tat
14 hours ago




The generated version is missing alot of "ms-*" properties , that are present in the readily downloadable version.
– Yoong Tat
14 hours ago












1 Answer
1






active

oldest

votes

















up vote
0
down vote













The Bootstrap generated version uses Autoprefixer which will add the vendor prefixes like -ms- in the CSS.






share|improve this answer





















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














     

    draft saved


    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53204413%2fhow-to-rebuild-bootstrap-grid-css-from-scss-files%23new-answer', 'question_page');
    }
    );

    Post as a guest
































    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    The Bootstrap generated version uses Autoprefixer which will add the vendor prefixes like -ms- in the CSS.






    share|improve this answer

























      up vote
      0
      down vote













      The Bootstrap generated version uses Autoprefixer which will add the vendor prefixes like -ms- in the CSS.






      share|improve this answer























        up vote
        0
        down vote










        up vote
        0
        down vote









        The Bootstrap generated version uses Autoprefixer which will add the vendor prefixes like -ms- in the CSS.






        share|improve this answer












        The Bootstrap generated version uses Autoprefixer which will add the vendor prefixes like -ms- in the CSS.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 14 hours ago









        Zim

        176k42369350




        176k42369350






























             

            draft saved


            draft discarded



















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53204413%2fhow-to-rebuild-bootstrap-grid-css-from-scss-files%23new-answer', 'question_page');
            }
            );

            Post as a guest




















































































            5N1Kn1XIjrJlf7oZQ7
            Xvh67phCZsr4 mBugV

            Popular posts from this blog

            How to pass form data using jquery Ajax to insert data in database?

            Guess what letter conforming each word

            Run scheduled task as local user group (not BUILTIN)