Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

how to remove horizental scroll in html css

i have a simple web page template.my problem is that, my web page has a horizental scroll.but i want remove it.this is my code:

 <html lang="FA">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
</head>

<body dir="rtl">
    <section class="bg-blue">
        <div class="container">
            <div class="text-center">
                <img src="logo.png" alt="">
                <h2 class="logo-text d-inline-block p-4 ps-0">My logo text</h2>
            </div>
        </div>
        <div class="row">
            <div class="col-12">
                <img src="" alt="">
            </div>
        </div>
    </section>
    <section class="bg-secondary">
        <div class="container">
            <div class="text-center" style="height: 800px;">
                <div class="search-container">
                    <div class="search-form">
                        <input type="text" class="form-control search-field w-50" placeholder="search">
                    </div>
                    
                </div>
            </div>
        </div>
    </section>

    <footer class="bg-yellow">
        <div class="container">
          
        </div>
    </footer>
</body>
</html>

this is screen shot of result:

this is my result:

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

any solution?

>Solution :

Try setting the body css using the overflow-x property for horizontal scrollbars like this:

.body{
overflow-x:hidden;
}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading