rtl-selection-with-decoration-ref.html (674B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8" /> 5 <title>rtl-selection-with-decoration-ref</title> 6 <style> 7 p { 8 font-size: 2em; 9 text-decoration-color: rgba(0, 0, 0, 0.3); 10 text-decoration-skip-ink: none; 11 } 12 #text1 { 13 text-decoration-line: line-through underline; 14 } 15 #text2 { 16 text-decoration-line: line-through overline; 17 } 18 </style> 19 </head> 20 <body> 21 <p id="text1" lang="he">זוהי עובדה הקורא שדעתו מבוססת של תהיה</p> 22 <p id="text2" lang="he" dir="rtl">זוהי עובדה הקורא שדעתו מבוססת של תהיה</p> 23 </body> 24 </html>