Advertisement
andruhovski

CSS-Demo 2

Feb 9th, 2018
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.     <head>
  4.         <meta charset="utf-8" />
  5.         <title></title>
  6.         <style>        
  7.             .err { display: inline-block; position: relative; }
  8.             .err:before {
  9.                   content: "~~~~~~~~~~~~";
  10.                   font-size: 0.6em; font-weight: 700; font-family: Times New Roman, Serif; color: red; width: 100%;
  11.                   position: absolute; top: 12px; left: -1px; overflow: hidden;                  
  12.             }            
  13.             .err_moz { text-decoration-line: underline; text-decoration-style: wavy; text-decoration-color: red; }
  14.         </style>
  15.     </head>
  16.     <body>
  17.         <div>
  18.             A boy whose name was Peter was<span class="err">woking</span> down the street
  19.         </div>
  20.         <div>
  21.             A boy whose name was Peter was<span class="err_moz">woking</span> down the street
  22.         </div>
  23.     </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement