Tools, FAQ, Tutorials:
HTML 'div' Tag/Element
What Is a "div" Tag/Element?
✍: FYIcenter.com
A "div" element is a block element that you can use a container of flow elements
(flow elements are really the superset of both inline elements and block elements).
By default, "div" elements will be treated as paragraphs by most browsers.
Here are basic rules about an "div" element:
Here is a tutorial example of "div" elements:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>DIV Elements as Paragraphs</title> </head> <body> <h4>XHTML Interview Questions</h4> <div style="background-color: #eeeeee; padding: 4px;"> Q: What is the number one advantage of using XHTML? </div> <div style="background-color: #ffeeff; padding: 4px;"> A: XHTML documents are well-formed XML documents. This allows your documents to be processed by any XML applications.</div> <div style="background-color: #eeeeee; padding: 4px;"> Q: What is most difficult part when converting a HTML document into an XHTML document?</div> <div style="background-color: #ffeeff; padding: 4px;"> A: The most difficult part is to make all elements are closed. XML documents requires that all elements must be closed with closing tags or with the extra "/" at the end of the opening tag.</div> </body> </html>
If you save the above document as div_elements.html and view it with Internet Explorer, you will see that each "div" is displayed as a paragraph as shown below:
⇒ Using HTML 'div' Elements with CSS Properties
⇐ HTML 'div' and 'span' elements
2017-03-11, ∼1963🔥, 0💬
Popular Posts:
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JS...
How to add request query string Parameters to my Azure API operation 2017 version to make it more us...
How To Set session.gc_divisor Properly in PHP? As you know that session.gc_divisor is the frequency ...
Can Multiple Paragraphs Be Included in a List Item? Yes. You can include multiple paragraphs in a si...
How to Install Docker Desktop 2.5.0 on Windows 10? You can follow this tutorial to Install Docker De...