You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 2, 2018. It is now read-only.
How should we format a multi-line at rule such as this?
@media screen
and (min-device-width:1200px)
and (max-device-width:1600px)
and (-webkit-min-device-pixel-ratio:2)
and (min-resolution:192dpi) {
.well-this-is-awkward {
padding:2em;
}
}
The text was updated successfully, but these errors were encountered:
I’m not particularly happy with the formatting in that example… the selector inside is double-indented. Is it better to wrap parens around the whole thing, along these lines?
@media (
screen
and (min-device-width:1200px)
and (max-device-width:1600px)
and (-webkit-min-device-pixel-ratio:2)
and (min-resolution:192dpi)
) {
.well-this-is-awkward {
padding:2em;
}
}
This still looks odd to me. Hoping there’s a better solution out there.
How should we format a multi-line at rule such as this?
The text was updated successfully, but these errors were encountered: