Last active
April 12, 2026 10:54
-
-
Save tombigel/6c90bdd25648c838d7c124ce345e710c to your computer and use it in GitHub Desktop.
percentage size inside fit-content test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="stage"> | |
| <div class="container" id="a"> | |
| <div class="element">px width both</div> | |
| </div> | |
| <div class="container" id="b"> | |
| <div class="element">px width element<br>fit-content container</div> | |
| </div> | |
| <div class="container" id="c"> | |
| <div class="element">percentage width element<br>px width container</div> | |
| </div> | |
| <div class="container" id="d"> | |
| <div class="element">percentage width element<br>fit-content container</div> | |
| </div> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .stage { | |
| border: 2px solid blue; | |
| } | |
| .container { | |
| margin: 2vh 20vw; | |
| height: 200px; | |
| width: 400px; | |
| border: 2px solid red; | |
| } | |
| .element { | |
| width: 200px; | |
| height: 100px; | |
| background: green; | |
| } | |
| #b { | |
| width: fit-content; | |
| } | |
| #c .element { | |
| width: 100%; | |
| } | |
| #d { | |
| width: fit-content; | |
| } | |
| #d .element { | |
| width: 100%; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment