1
0
Fork 0
firefox/testing/web-platform/tests/css/css-images/gradient/gradient-to-transparent-ref.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

29 lines
602 B
HTML

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Gradient test: gradients to/from transparent</title>
<style>
.test {
display: inline-block;
width: 25px;
height: 100px;
margin: 10px;
}
.b {
background: linear-gradient(rgba(255 0 0 / 0), 75%, red);
}
.e {
background: linear-gradient(blue, 75%, rgba(0 0 255 / 0));
}
</style>
<p>All three gradients should look the same:</p>
<div class="test b"></div>
<div class="test b"></div>
<div class="test b"></div>
<p>All three gradients should look the same:</p>
<div class="test e"></div>
<div class="test e"></div>
<div class="test e"></div>