I'm currently facing a challenge with defining the height of the description box in order to achieve the layout shown. I am trying to find a solution without relying on javascript.
https://i.stack.imgur.com/3j278.png
At present, the wrapper and title bar are functioning correctly, with the title and description divs nested inside the wrapper:
#wrapper{
position: fixed;
right: 0;
width: calc(100vw - 1.51 * 95vh - 5vh);
top: calc(40px + 2.5vh + 2.5vh);
height: calc(100vh - 40px - 40px);
}
#title{
width: 100%;
height: auto;
top: calc(2.5vh + 40px + 2.5vh + 5vh);
}
I am seeking guidance on how to handle the description div properly. Any assistance would be greatly appreciated!
Thank you!