forked from AuroraMiddleware/gtk
d081b309d5
These tests exercise many allowed ways to specify various properties.
28 lines
295 B
CSS
28 lines
295 B
CSS
a {
|
|
background-origin: initial;
|
|
}
|
|
|
|
b {
|
|
background-origin: inherit;
|
|
}
|
|
|
|
c {
|
|
background-origin: unset;
|
|
}
|
|
|
|
d {
|
|
background-origin: border-box;
|
|
}
|
|
|
|
e {
|
|
background-origin: padding-box;
|
|
}
|
|
|
|
f {
|
|
background-origin: content-box;
|
|
}
|
|
|
|
g {
|
|
background-origin: border-box, border-box, content-box;
|
|
}
|