blob: efdf2b6219edd63fb84c26aedcbbb0ff48333537 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE html>
<html>
<head>
<style>
big {
background-color: red;
background-clip: text !important;
border-block-end-style: dotted;
}
</style>
</head>
<body>
<big id="big" dir="rtl"></big>
<script>
const big = document.getElementById("big");
big.innerText = "\nA";
</script>
</body>
</html>
|