The wbr tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The wbr tag will determine the appropriate place in the text for line breaks
In case your text contains very long words, or to avoid unreasonable line breaks in the browser, you should use the wbr tag to locate the line break.
Using
For example , use the wbr tag to locate a line break.
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <h1>Học html miễn phí tại web888.vn</h1> <p> đây là dữ liệu mẫu đây là dữ liệu mẫu đây là dữ liệu mẫu đây làdữliệumẫuđâylàdữliệumẫuđâylàdữliệu mẫulàdữliệumẫuđâylàdữliệumẫuđâylàdữliệu mẫulàdữliệumẫuđâylàdữliệumẫuđâylàdữliệu mẫulàdữliệumẫuđâylàdữliệumẫuđâylàdữliệu mẫu <wbr> nội dung cần xuống dòng. </p> </body> </html>