Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<title>CSS zoom applies to border-image-width when specified and inherited</title>
<link rel="help" href="https://drafts.csswg.org/css-viewport/">
<link rel="match" href="border-image-width-ref.html">
<style>
.box {
width: 60px;
height: 60px;
border-image: url("data:image/svg+xml,%3csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100' height='100' fill='red'/%3e%3c/svg%3e") 30;
border-image-width: 8px;
margin: 10px;
}
.zoom {
zoom: 2;
}
</style>
<div class="box"></div>
<div class="zoom">
<div class="box"></div>
</div>
<div class="zoom box"></div>