Comments in the Documentation
Created by: lukeminall
In the documentation there are blocks of CSS that can be copied to the clipboard (via a provided link), the code is all (from what I've seen) syntactically correct, however the comments are \\
instead of /* */
.
An example of this is the following from the responsive breakpoints article:
// Extra small devices (portrait phones, less than 576px)
// No media query 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) { ... }
I understand that this is correct for SASS, but /* */
is also SASS complaint, as well as being complaint for people using custom.css
to add custom code to their build.