“Как добавить горизонтальную полосу прокрутки в HTML” Ответ

Как добавить горизонтальную полосу прокрутки в HTML


    <style>
    h1 {
        color: Green;
    }
     
    div.scroll {
        margin: 4px, 4px;
        padding: 4px;
        background-color: #08c708;
        width: 300px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
    }
    </style>
</head>
 
<body>
    <center>
        <h1>GeeksforGeeks</h1>
        <h2>
        Making a div horizontally
        scrollable using CSS
      </h2>
        <div class="scroll">
             It is a good platform to learn programming.
             It is an educational website. Prepare for the
             Recruitment drive of product based companies
             like Microsoft, Amazon, Adobe etc with a free
             online placement preparation course. The course
             focuses on various MCQ's & Coding question likely
             to be asked in the interviews & make your upcoming
             placement season efficient and successful. Also,
             any geeks can help other geeks by writing articles
             on the GeeksforGeeks, publishing articles follow few
             steps that are Articles that need little modification
             or improvement from reviewers are published first.
             To quickly get your articles reviewed, please refer
             existing articles, their formatting style, coding style,
             and try to make you are close to them. In case you are a
             beginner, you may refer Guidelines to write an Article
        </div>
    </center>
</body>
 
</html>
Hurt Heron

Горизонтальный свиток

remove width:100%;
add float:left;
Joyous Jackal

Ответы похожие на “Как добавить горизонтальную полосу прокрутки в HTML”

Вопросы похожие на “Как добавить горизонтальную полосу прокрутки в HTML”

Больше похожих ответов на “Как добавить горизонтальную полосу прокрутки в HTML” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования