A full time web and mobile app developer.
Nothing here yet.
No blogs yet.
.js/.css = Pretty and easy to read. .min.js/min.css = Looks like jibberish! But has a smaller file size. (Use this one) The second one is minified, a process which involves removing unnecessary white-space and shortening variable names. All this is done in such a way that it doesn't affect the way the code behaves when run, in any way. Just to point out as well, you are better using the minified version (.min) for your live environment as Google are now checking on page loading times. Having all your JS file minified means they will load faster and will score you more brownie points.
As you posted I too want to design Check Boxes and in addition to that I need an easier way to apply "vertical-align: middle" property. For Example current situation is like this .parent{ display:table; } .child{ display:table-cell; vertical-align:middle; } I want something like this .child{ vertical-align:middle; }