Skip to main content
Journey Uncommon Logo
JourneyUncommon
mediumCSStransformsSingle-choice MCQ

An element has `transform: scale(0)` and is animated to `scale(1)`. A descendant inside it has `position: fixed`. While the parent is mid-animation (e.g. scale 0.5), where is the fixed child positioned?

.panel { transform: scale(0.5); } .panel .toast { position: fixed; top: 0; }