Horje
How to remove horizontal scrollbar and yet allow vertical Code Example
How to remove horizontal scrollbar and yet allow vertical
overflow: auto; /* Setting the overflow to auto will automatically put a scrollbar where it is needed */

/* 
But if you insist you do not want an horizontal scrolbar, 
even if there is an overflowing text, you could use this lines of code
*/

overflow-y: scroll;
overflow-x: hidden;




Css

Related
how to change the select arrow in css Code Example how to change the select arrow in css Code Example
css user-select Code Example css user-select Code Example
color gradient Code Example color gradient Code Example
set css to default Code Example set css to default Code Example
media queries and or conditions Code Example media queries and or conditions Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10