
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
How to indicate a potential word break point within a section in HTML?
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>
- Related Articles
- How to create a section in a document in HTML?
- How to insert a single line break in HTML?
- Word Break in Python
- Word Break Problem
- When is a CDATA section necessary within a script tag?
- How do we add a noframe section in HTML?
- How do we add a noscript section in HTML?
- Word Break II in Python
- CSS word-break property
- How do we include a section in an HTML document?
- How to add Flash content within a webpage in HTML?
- Minimum Word Break Problem in C++
- Find intersection point of lines inside a section in C++
- How to indicate long quotations in an HTML document?
- How to create Section Counter Using HTML and CSS?

Advertisements