Answers for "delete horizontal scroll of my website"

11

css how to remove horizontal scrollbar

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
Posted by: Guest on November-24-2019
1

remove scroll from a page

<style type="text/css">
html, body {
  overflow: hidden;
}
</style>
Posted by: Guest on July-12-2021

Browse Popular Code Answers by Language