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