14 lines
No EOL
227 B
HTML
14 lines
No EOL
227 B
HTML
<!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> |