Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-viewport/zoom/explicit-inherit/margin.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>margin:inherit applies zoom</title>
<link rel=match href=margin-ref.html>
<style>
.zoomed {
background: coral;
width: 50px;
height: 50px;
zoom: 2;
margin: inherit;
}
</style>
<div style="margin:10px; display:contents">
<div class=zoomed></div>
</div>