File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -97,6 +97,9 @@ Value Definitions</h3>
97
97
using the <a href="https://www.w3.org/TR/css-values-3/#value-defs">value definition syntax</a> from [[!CSS-VALUES-3]] .
98
98
Value types not defined in this specification are defined in CSS Values & Units [[!CSS-VALUES-3]] .
99
99
Combination with other CSS modules may expand the definitions of these value types.
100
+ For example, combining with <a href="https://www.w3.org/TR/css-images/">CSS Images</a>
101
+ allows for using CSS gradients as 'background-image' or 'border-image' values.
102
+ [[CSS-IMAGES-3]]
100
103
101
104
In addition to the property-specific values listed in their definitions,
102
105
all properties defined in this specification
@@ -287,9 +290,10 @@ controls for image display.
287
290
<div class="example">
288
291
<p> Some examples specifying background images:</p>
289
292
<pre>
290
- body { background-image: url("marble.svg") }
293
+ html { background-image: url("marble.svg") }
291
294
p { background-image: none }
292
295
div { background-image: url(tl.png), url(tr.png) }
296
+ main { background-image: radial-gradient(at bottom right, transparent, white); }
293
297
</pre>
294
298
</div>
295
299
You can’t perform that action at this time.
0 commit comments