3 comments on “today i’m a little bit busy

      • If you need to split between the mobile & the desktop, just used css media screen and max set to 800px for mobile, and up for desktop..

        example :
        #body-text { font-size:15px; }

        @media screen and (max-width:800px) {
        #body-text { font-size:10px; }
        }

        this means that anything under the width of 800px will get font size 10px, anything above the width of 800px will get 15px, it can be used on any kind of style u want, color, size, font-family ..

        ignore this if you already know XD

Leave a reply to snowonsummer Cancel reply