Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            
- /css/css-text-decor/text-emphasis-position-auto-001.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<meta charset="utf-8">
<title>text-emphasis-position auto value</title>
<link rel="match" href="text-emphasis-position-auto-001-ref.html">
<style>
p {
	border: solid silver;
	text-emphasis: dot;
	text-emphasis-position: auto;
	margin: 0.5em;
}
div {
	float: left;
	margin: 0.5em;
}
</style>
<div lang="zh">
	<p>你好
</div>
<div lang="ja">
	<p>今日は</p>
</div>
<div lang="ko">
	<p>안녕하세요</p>
</div>
<div lang="zh" style="writing-mode: vertical-rl">
	<p>你好
</div>
<div lang="ja" style="writing-mode: vertical-rl">
	<p>今日は</p>
</div>
<div lang="ko" style="writing-mode: vertical-rl">
	<p>안녕하세요</p>
</div>