0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-30 22:52:24 +01:00
`<pre>`: Disable auto-hiding scrollbar in IE & legacy Edge
This commit is contained in:
Martijn Cuppens 2020-04-29 17:03:41 +02:00 committed by XhmikosR
parent 971738b4b5
commit ec637483f2

View File

@ -229,6 +229,9 @@ pre {
margin-bottom: 1rem;
// Don't allow content to break outside
overflow: auto;
// Disable auto-hiding scrollbar in IE & legacy Edge to avoid overlap,
// making it impossible to interact with the content
-ms-overflow-style: scrollbar;
}