OLD | NEW |
---|---|
(Empty) | |
1 <!doctype html> | |
2 <style> | |
3 div { | |
4 font-size: 50px; | |
5 text-decoration: underline solid green; | |
6 } | |
7 </style> | |
8 <script> | |
9 onload = function() { | |
10 target.style.textDecorationStyle = "dashed"; | |
11 }; | |
12 </script> | |
13 <div id="target"> | |
14 Filler text | |
15 </div> | |
OLD | NEW |