blob: 3c3141a862df19ad62f343e00b37f248fbd845b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype html>
<meta charset=utf-8>
<title>Drop cap with no bidi in the document</title>
<style>
p:first-line {
background: lightblue;
}
p::first-letter {
float: left;
font-size: 4rem;
}
</style>
<p>Ab</p>
|