1
0
Fork 0
firefox/testing/web-platform/tests/css/css-inline/initial-letter/initial-letter-block-position-margins.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

39 lines
1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>Tests initial letter with margin in LTR</title>
<link rel="author" title="Google LLC" href="https://www.google.com/">
<link rel="help" href="https://drafts.csswg.org/css-inline/#block-position">
<meta name="flags" content="ahem">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" >
<link rel="match" href="initial-letter-block-position-margins-ref.html">
<style>
.sample {
border: solid 1px green;
font-family: Ahem;
font-size: 20px;
line-height: 24px;
width: 230px;
}
.initial-letter::first-letter {
initial-letter: 3 drop;
color: lime;
font-size: 100px; /* should be ignored in rendering */
line-height: 50px; /* should be ignored in rendering */
}
.initial-letter::first-letter {
margin-top: 10px;
margin-bottom: 30px;
margin-left: 15px;
margin-right: 45px;
}
</style>
</head>
<body>
<div class="sample initial-letter">
Abc<br>def<br>ghi<br>jkl<br>mno<br>
</div>
</body>
</html>