I'm trying to disable horizontal scrolling in HTML pre tag
I'v tried this:
pre {
height: auto;
max-height: 500px;
overflow:hidden;
background-color: #eeeeee;
}
but it does not work correctly
it appear like this:
The text keep going to left edge. (the direction of my html page is RTL Right to Left)
Any Suggestion?