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/padding.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>padding:inherit applies zoom</title>
<link rel="match" href="padding-ref.html">
<style>
.parent {
background: coral;
width: 50px;
height: 50px;
padding: inherit;
zoom: 2;
}
.inner {
background: green;
width: 100%;
height: 100%;
}
</style>
<div style="padding:10px; display:contents">
<div class=parent>
<div class=inner></div>
</div>
</div>