Can I set any variable in CSS like I want my div height to always be half of width my div scales with the screen size width for div is in percent
You can use the view width to set the height. 100 vw is 100% of the width. height: 60vw; would make the height 60% of the width.
height: 60vw;