mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 08:40:08 +00:00
3a8cec5f17
This is mostly to ensure that the background-positioning feature keeps working and to demonstrate it. https://bugzilla.gnome.org/show_bug.cgi?id=677109
14 lines
297 B
CSS
14 lines
297 B
CSS
@import url("reset-to-defaults.css");
|
|
|
|
* {
|
|
background-image: linear-gradient(red, blue, red);
|
|
background-size: 20px 20px;
|
|
background-position: 50%;
|
|
}
|
|
|
|
#reference {
|
|
background-image: linear-gradient(blue, red, blue, red, blue);
|
|
background-size: initial;
|
|
background-position: initial;
|
|
}
|