Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<title>flex-basis:inherit applies zoom (ref)</title>
<style>
.container {
display: flex;
background: skyblue;
}
.zoomed {
background: coral;
flex-basis: 100px;
height: 200px;
}
</style>
<div class=container>
<div class=zoomed></div>
</div>