Home > Article > Web Front-end > HTML5 tags that cannot wrap
html5 cannot wrap tags: 1. a, defines a hyperlink, used to link from one page to another; 2. abbr, used to represent an abbreviation or acronym; 3. b , defines bold text; 4. bdo, defines text direction; 5. cite, defines the title of the work; 6. em, used to present emphasized text; 7. i, defines italics; 8. img, defines HTML The image in the page; 9. input, defines the input box; 10. sub, defines the subscript text; 11. sup, defines the superscript text.
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.
Tag elements in HTML are generally divided into three different types: block elements, inline elements, and inline block elements.
Inline elements and inline block elements cannot be wrapped.
Characteristics of inline elements:
1. Displayed in one line with other inline elements from left to right, without automatic line wrapping. The default arrangement is From left to right;
2. You cannot directly control the width, height and related css properties of the box model, but you can directly set the left and right values of the inner and outer margins
3. Inline elements The width and height are determined by the size of the content (text, pictures, etc.)
4. Inline elements can only accommodate text or other inline elements (please note here that do not nest in inline elements) Block-level elements)
Because of its own characteristics, we usually use inline elements to build text and small icons (small structures).
Characteristics of inline block elements:
1. They are on the same line as other elements and will not wrap automatically. The default arrangement is from left to right;
2. The height, width, line height, top and bottom margins of the element can be set.
Inline block elements combine the characteristics of inline elements and block elements, but each has its own trade-offs. Therefore, inline block elements are used more often due to their characteristics in daily use, and are useful in many aspects.
So html cannot wrap tag elements (inline elements and inline block elements):
a - Define hyperlinks for starting from One page links to another page.
abbr - used to represent an abbreviation or acronym, such as "WWW" or "NATO".
acronym - Defines an acronym (Not supported in HTML5).
HTML5 does not support ).
HTML5 does not support ).
)
The above is the detailed content of HTML5 tags that cannot wrap. For more information, please follow other related articles on the PHP Chinese website!