diff options
author | MacDue <macdue@dueutil.tech> | 2022-07-31 01:24:24 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-08-08 22:39:06 +0200 |
commit | 4b9c0aac7a624f1b6af9037293e21d524f2511fe (patch) | |
tree | c11c298e4c1163d1bfffc9166880dad055361103 /Base/res/html/misc | |
parent | da79883b60d90d9d09498fecd430f1b18f7349a5 (diff) | |
download | serenity-4b9c0aac7a624f1b6af9037293e21d524f2511fe.zip |
Base: Add linear-gradient list-marker demo
Diffstat (limited to 'Base/res/html/misc')
-rw-r--r-- | Base/res/html/misc/lists.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Base/res/html/misc/lists.html b/Base/res/html/misc/lists.html index 59976d665a..19e7fb67c2 100644 --- a/Base/res/html/misc/lists.html +++ b/Base/res/html/misc/lists.html @@ -68,6 +68,12 @@ <li>Another entry</li> </ul> + <p>list-style: linear-gradient(to top left, red, green)</p> + <ul style="list-style: linear-gradient(to top left, red, green);"> + <li>Entry one</li> + <li>Another entry</li> + </ul> + <p>list-style: inside url(list-item.png)</p> <ul style="list-style: inside disc url(custom-list-item.png);"> <li>Entry one</li> |