Skip to content

Instantly share code, notes, and snippets.

@syntaqx
Last active May 30, 2019 09:44
Show Gist options
  • Save syntaqx/c363b48ae5485bd0effa39f3ee0f8748 to your computer and use it in GitHub Desktop.
Save syntaqx/c363b48ae5485bd0effa39f3ee0f8748 to your computer and use it in GitHub Desktop.
Useful Bootstrap Snippets
*,
::after,
::before {
box-sizing: border-box
}
.clearfix::after {
display: block;
clear: both;
content: ""
}
/*
Extra small devices (portrait phones, less than 576px)
No media query for `xs` since this is the default in Bootstrap */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { ... }
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { ... }
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { ... }
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) { ... }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment