How To Avoid Horizontal Scroll In Web Page Code Example


Example 1: DISABLE the Horizontal Scroll


html, body {
max-width: 100%;
overflow-x: hidden;
}

Example 2: how to stop a page from scrolling horizontally


overflow-x: hidden

Example 3: css how to prevent horizontal scrolling


body {
overflow-x: hidden !important;
}
.container {
max-width: 100% !important;
overflow-x: hidden !important;
}

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable