The HTML <wbr> tag defines a potential line breakpoint if needed. This stands for Word Break Opportunity.
Example
You can try to run the following code to learn how to implement <wbr> tag in HTML −
<!DOCTYPE html> <html> <head> <title>HTML wbr Tag</title> </head> <body> <wbr />The browser to extend the document window beyond the size of the viewing pane and the poor user must scroll right<wbr /> </body> </html>