Answers for "css scroll height if screen too small"

CSS
0

css scroll height if screen too small

.max_height_screen_then_scroll{    
    overflow-y: auto; 
  	height:auto;
    max-height:height: calc(100vh - 20px);
}
Posted by: Guest on January-26-2022

Browse Popular Code Answers by Language