TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html> <head> <style> .container { width: 200px; border: 1px solid #ddd; word-wrap: break-word; } .highlight { color: blue; font-weight: bold; } </style> </head> <body> <h2>Styled Long Words</h2> <div class="container"> Please visit <span class="highlight">www.example<wbr>.com</span> for more information. </div> </body> </html>