CSS can detect the presence of a vertical classic scrollbar:
body {
margin: 0;
container-type: inline-size;
}
@container (width < 100vw) {
/* classic scrollbar is present */
}
CSS can detect the presence of a vertical classic scrollbar: body { @container (width < 100vw) { No comments
|