forked from AuroraMiddleware/gtk
d081b309d5
These tests exercise many allowed ways to specify various properties.
63 lines
1.3 KiB
CSS
63 lines
1.3 KiB
CSS
a {
|
|
border-bottom-left-radius: initial;
|
|
border-bottom-right-radius: initial;
|
|
border-top-left-radius: initial;
|
|
border-top-right-radius: initial;
|
|
}
|
|
|
|
b {
|
|
border-bottom-left-radius: inherit;
|
|
border-bottom-right-radius: inherit;
|
|
border-top-left-radius: inherit;
|
|
border-top-right-radius: inherit;
|
|
}
|
|
|
|
c {
|
|
border-bottom-left-radius: unset;
|
|
border-bottom-right-radius: unset;
|
|
border-top-left-radius: unset;
|
|
border-top-right-radius: unset;
|
|
}
|
|
|
|
d {
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
e {
|
|
border-bottom-left-radius: 5px;
|
|
border-bottom-right-radius: 5px;
|
|
border-top-left-radius: 5px;
|
|
border-top-right-radius: 5px;
|
|
}
|
|
|
|
f {
|
|
border-bottom-left-radius: 50%;
|
|
border-bottom-right-radius: 50%;
|
|
border-top-left-radius: 50%;
|
|
border-top-right-radius: 50%;
|
|
}
|
|
|
|
g {
|
|
border-bottom-left-radius: 5px 6px;
|
|
border-bottom-right-radius: 5px 6px;
|
|
border-top-left-radius: 5px 6px;
|
|
border-top-right-radius: 5px 6px;
|
|
}
|
|
|
|
h {
|
|
border-bottom-left-radius: 5px 20%;
|
|
border-bottom-right-radius: 5px 20%;
|
|
border-top-left-radius: 5px 20%;
|
|
border-top-right-radius: 5px 20%;
|
|
}
|
|
|
|
i {
|
|
border-bottom-left-radius: 10% 20%;
|
|
border-bottom-right-radius: 10% 20%;
|
|
border-top-left-radius: 10% 20%;
|
|
border-top-right-radius: 10% 20%;
|
|
}
|