10 lines
No EOL
320 B
CSS
10 lines
No EOL
320 B
CSS
/* Ensure the body width is fixed and prevents resizing by the user */
|
|
body {
|
|
overflow-x: hidden;
|
|
/* Prevent horizontal scrolling by user */
|
|
width: 100vw;
|
|
/* Fix the width of the viewport */
|
|
max-width: 100vw;
|
|
/* Prevent page from extending wider than the viewport */
|
|
box-sizing: border-box;
|
|
} |