Skip to content

Instantly share code, notes, and snippets.

@WebDevSimplified
WebDevSimplified / bootstrap-breakpoint.css
Last active May 4, 2024 21:33
This stylesheet adds text describing the current Bootstrap Breakpoint in the top right corner of the screen.
body {
margin-top: 40px; /* This margin just makes the text easier to read. You can remove it if you want since it can mess with your other styles. */
}
body::before {
content: "XS";
color: red;
font-size: 2rem;
font-weight: bold;
position: fixed;