I'm trying to convert figma design to html and css but in the design all items' positions are absolute.
One of the nav item's styles:
position: absolute;
width: 79px;
height: 16px;
right: 395px;
top: 13px;
Grid items' styles:
position: absolute;
height: 200px;
left: 0px;
right: 0px;
top: 0px;
I'm new to figma and this is the first time I've seen something like this. I don't know if this is conventional or not. They expect me to make the design responsive aswell. But since they are all fixed, I cannot use flexbox and grid systems. What is the conventional way to do this?