Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-writing-modes/text-shadow-sideways-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Sideways Inline Layout: Text Decoration</title>
<meta charset=utf-8>
<link rel="match" href="text-shadow-sideways-001-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
body > div {
/* styling */
border: solid gray;
font: 30px/1 Ahem;
color: silver;
float: left;
margin: 8px;
/* test */
text-decoration: underline;
text-decoration-color: orange;
text-decoration-thickness: 4px;
text-shadow: 2px 4px aqua;
}
.lr {
writing-mode: sideways-lr;
}
.rl {
writing-mode: sideways-rl;
}
</style>
<div class=lr>Ap Éx</div>
<div class=rl>Ap Éx</div>