customize scroll in fox and IE fire

Asked

Viewed 36 times

0

Well this scroll works perfectly on Chrome and safari. I wondered how to make the scrollbar equal in IE and Firefox.

Follows code.

.container {
    height:200px;
    overflow: auto;
    width: 250px;
    border-bottom: 1px solid #D4D4D4;
}

.container::-webkit-scrollbar-track {
    background-color: #F4F4F4;
}
.container::-webkit-scrollbar {
    width: 6px;
    background: #F4F4F4;
}
.container::-webkit-scrollbar-thumb {
    background: #dad7d7;
}
<div class="container">
    <div class="content" style="height:600px;">pagina</div>
</div>

  • I don’t agree. I want something more specific for firefox. The answer to this topic does not answer my question.

  • 2

    As I said before the closing, the fact that there is no answer that answers does not justify answers in separate questions. You can open a bonus on that to try to attract some more complete response. Duplicate closure is not a penalty, but one way your question indicates the other, both for future queries and for new answers.

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.