Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/grid-items/grid-item-border-padding-002.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel="match" href="grid-item-border-padding-002-ref.html">
<style>
.grid {
display: grid;
width: 100px;
height: 100px;
grid-template-columns: 100px;
grid-template-rows: 100px;
padding: 10px;
outline: 1px solid black;
}
.item {
width: 50px;
height: 50px;
grid-row: 1/2;
background-color: green;
}
</style>
<p>Test passes if the green box is inset by the padding from the outline.</p>
<div class="grid">
<div class="item"></div>
</div>