text-emphasis-position-default-001-ref.html (585B)
1 <!DOCTYPE html> 2 <title>text-emphasis-position default values</title> 3 <style> 4 p { 5 border: solid silver; 6 text-emphasis: dot; 7 margin: 0.5em; 8 text-emphasis-position: over right; 9 } 10 11 div { 12 float: left; 13 margin: 0.5em; 14 } 15 </style> 16 17 <div style="writing-mode: horizontal-tb"> 18 <p style="text-emphasis-position: over right">text 19 <p style="text-emphasis-position: over right">text 20 <p style="text-emphasis-position: under right">text 21 </div> 22 23 <div style="writing-mode: vertical-rl"> 24 <p>text 25 <p>text 26 <p>text 27 </div> 28 29 <div style="writing-mode: vertical-lr"> 30 <p>text 31 <p>text 32 <p>text 33 </div>