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-decoration-propagation-04.html - WPT Dashboard Interop Dashboard
 
 
<!DOCTYPE html>
<title>CSS Test: text-decoration propagation</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com" />
<link rel="match" href="reference/text-decoration-propagation-04-ref.html">
<style>
div { margin: 1em 0 }
</style>
<div style="text-decoration: underline">
  lorem
  <div style="text-decoration: overline">
    ipsum
  </div>
  dolor
  <div style="text-decoration: overline">
    sit
    <div style="text-decoration: line-through">
      amet
    </div>
    consectetur
  </div>
  adipiscing
</span>