css 100 width of parent code example
Example 1: css fill parent height
html, body {
height: 100%
}
body {
display: flex;
align-items: stretch;
}
#root {
width: 100%
}
Example 2: css image cover
object-fit: contain;
html, body {
height: 100%
}
body {
display: flex;
align-items: stretch;
}
#root {
width: 100%
}
object-fit: contain;