Vertical Alignment with Percentages, Logo with Aspect Ratio and Progress Bar Alignment
My problem comes in two parts, which seem to heavily rely on each other. The first is the vertical alignment problem. My page has a logo and a progress bar below it like so:
I need the spacing between these elements on the vertical axis to be the following:
1.
2.
3.
I've tried using margins, top/bottom, flexbox, and grid. The best results I've gotten thus was by using flexbox, by inserting invisible elements where spacing is needed, and then giving them
Anyways, not all solutions for this work, because I need the logo to keep its aspect ratio. When the page is squished vertically, I expect the logo to shrink, so the spacing maintains the correct values. I've achieved this using
The last thing that I need is for the progress bar's height to be a constant value, like
Thank anyone in advance for trying to help
I've been stuck on this for a while
I need the spacing between these elements on the vertical axis to be the following:
1.
37.6% of the <section>'s height between the <img> and the top of the <section>2.
20% of the <section>'s height between the <img> and the progress bar <div>3.
14.7% of the <section>'s height between the progress bar <div> and the bottom of the <section>I've tried using margins, top/bottom, flexbox, and grid. The best results I've gotten thus was by using flexbox, by inserting invisible elements where spacing is needed, and then giving them
flex-shrink: 0;.Anyways, not all solutions for this work, because I need the logo to keep its aspect ratio. When the page is squished vertically, I expect the logo to shrink, so the spacing maintains the correct values. I've achieved this using
object-fit: contain;. Problem with this solution, is that I need the progress bar's width to match that of the svg. object-fit: contain; makes it so that the width of the <img> element doesn't necessarily match that of the svg inside of it. So I really don't know how to even extract the width of the svg The last thing that I need is for the progress bar's height to be a constant value, like
10px. The widths of both the logo and the progress bar are currently set to width: min(1080px, 74.5%);Thank anyone in advance for trying to help

