Google News
logo
HTML5 WBR Tag
The (stands for Word Break Opportunity) element specifies a position within text where the browser may optionally break a line if necessary.
Example :
<!DOCTYPE html>
<html lang="en">
    <head>
       <title>HTML5 WBR Tag</title>
    </head>
    
    <body>
    
        <p>This is sample <wbr>WBR<wbr> Tag.</p>
        
    </body>
    
</html>  
Output :

This is sample WBR Tag.