19 lines
298 B
HTML
19 lines
298 B
HTML
<!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>
|