1
0
Fork 0
firefox/testing/web-platform/tests/css/css-images/linear-gradient-calc-em-units.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

19 lines
459 B
HTML

<!DOCTYPE html>
<title>CSS Images Test: Linear gradient with em in calc()</title>
<link rel="help" href="https://drafts.csswg.org/css-images/#linear-gradients">
<link rel="match" href="linear-gradient-calc-em-units-ref.html">
<style>
div {
width: 100px;
height: 100px;
background: linear-gradient(blue calc(2em), yellow);
}
#em1 {
font-size: 10px;
}
#em2 {
font-size: 30px;
}
</style>
<div id="em1"></div>
<div id="em2"></div>