Is it possible to set a to add a scroll bar vertically, but click horizontally?
EDIT I see a mention in CSS3 in the answers. Which browsers support this?
html { overflow-x:hidden; overflow-y:auto; }
or { overflow-y:scroll; }
{ overflow-y:scroll; }
Not tested, but try.
overflow: auto; /* For CSS 2 user agents */ overflow-x: hidden; /* For UAs implementing the CSS 3 property */
Yes.
overflow-y: auto; overflow-x: hidden;
To scroll horizontally:
overflow-x: auto;
To scroll vertically:
overflow-y: auto;
Source: https://habr.com/ru/post/1749954/More articles:How can I implement partial serialization? - c #Using Function Pointers - c ++If you do not have your own database engine, what is the best way to convert the database to mysql? - databaseКак заменить аннотацию @Resource версией Java 1.4 - javaCaching generated images using PHP - phpMy Twitter PHP script stops working! - apihttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1749956/easy-ways-to-investigate-unknown-python-apis&usg=ALkJrhi5qmDqMAB8_s1mXhbo1SEDa11GGwhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1749957/how-can-i-restrict-access-to-all-files-in-a-folder-without-webconfig&usg=ALkJrhirn-jNF8KOqwU0JqvhpB1xIUImogWindows Authentication - MVC 2 ASP.Net - authenticationHow to check if a .NET DLL is registered? - c ++All Articles