Last active
April 19, 2020 11:01
-
-
Save biswajitpaul01/616925a4509b627c045173120af92600 to your computer and use it in GitHub Desktop.
Basic barebone css boilerplate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:active,:focus{outline:none;} | |
::-moz-focus-inner{border:0;} | |
input:focus,textarea:focus,button:focus{outline:none !important} | |
body{margin:0;padding:0} | |
img{height:auto;image-rendering:-webkit-optimize-contrast;max-width:100%} | |
select { | |
/* for Firefox */ | |
-moz-appearance: none; | |
/* for Chrome */ | |
-webkit-appearance: none; | |
} | |
/* Remove Arrows/Spinners */ | |
/* Chrome, Safari, Edge, Opera */ | |
input::-webkit-outer-spin-button, | |
input::-webkit-inner-spin-button { | |
-webkit-appearance: none; | |
margin: 0; | |
} | |
/* Firefox */ | |
input[type=number] { | |
-moz-appearance: textfield; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment