I have made two separate divs. The first div contains the name of projects and second div contains the different metrics and their scores for each project. I want to keep first div fixed and vertical scrollable . and second div horizontal scrollable. But i am not able to achieve the same. Any insight is deeply appreciated. Here's my fiddle
I am using
display: inline-block;
background-color: white;
width: 50%;
height: calc(100% - 72px);
position: absolute;
overflow-x: scroll;
overflow-y: hidden;
this class to get horizontal scroll on second div but not getting any.