HTML block
HTML <div> and <span>
##HTML can be combined with <div> and <span> elements combined.
HTML block elements
Most HTML elements are defined as block-level elements or inline elements.
Block-level elements usually start (and end) with a new line when displayed by the browser.
Examples: <h1>, <p>, <ul>, <table>
HTML inline elements
Inline elements usually do not start on a new line when displayed.
Examples: <b>, <td>, <a>, <img>
HTML <div> Element
HTML The <div> element is a block-level element that can be used as a container for grouping other HTML elements. The
<div> element has no specific meaning. In addition, since it is a block-level element, the browser will display line breaks before and after it.
If used with CSS, the <div> element can be used to set style attributes on large blocks of content.
Another common use of the <div> element is in document layout. It replaces the old-fashioned way of using tables to define layouts. Using the <table> element for document layout is not a correct use of tables. The <table> element is used to display tabular data.
HTML <span> and elements
HTML <span> elements are inline elements that can be used as containers for text The
<span> element also has no specific meaning.
When used with CSS, the <span> element can be used to set style attributes for portions of text.
HTML grouping tags
Description | |
---|---|
Defines the area of the document, block-level | |
Used to combine inline elements in the document, inline elements (inline) |