remove horizontal scroll bar on body
no horizontal scroll bar on MDN by codeiter
Details
Authorcodeiter
LicenseGPL-3.0-or-later
Categoryuserstyles, quick-fix
Created
Updated
Size426 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name no horizontal scroll bar on MDN
@namespace com.github.codeiter.userstyle
@version 1.0.0
@description remove horizontal scroll bar on body - 2/24/2022, 9:01:43 AM
@author Mohamed Amin Boubaker
@license GPL-3.0-or-later
==/UserStyle== */
@-moz-document domain("developer.mozilla.org") {
/* body scroll bar fixe */
body {
overflow-x: hidden !important;
}
}