Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
/* Stylish custom underline on links */ a { text-decoration: underline; text-decoration-color: #1a73e8; text-decoration-thickness: 2px; text-underline-offset: 4px; color: inherit; } a:hover { text-decoration-style: wavy; text-decoration-color: #b31412; } /* Remove underline but add bottom border for control */ .nav-link { text-decoration: none; border-bottom: 2px solid transparent; transition: border-color 0.2s; } .nav-link:hover { border-bottom-color: currentColor; } /* Uppercase label without changing HTML */ .badge { text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.1em; } /* Strikethrough for discounted price */ .original-price { text-decoration: line-through; color: #999; }
Result
Open