<br />Generally speaking, the file organization of "standard web pages" is XHTML CSS. XHTML is mainly used to represent the structure of web pages and display content, while CSS is used to define the structural layout and modify the content style. XHTML commonly used for layout generally includes: DIV: Mainly used for logical division of page content. For example, a web page generally includes header, navigation, sidebar, content, copyright and other responsibility partitions. At this time, you can use the DIV tag to split. At the same time, the following naming is recommended for each block: The following is the quoted content: Head: <div id="masthead"></div> Navigation: <div id="globalnav"></div> Sidebar: <div id="navbar"></div> Content: <div id="content"></div> Copyright: <div id="copyright"></div> Note: The ID is unique, that is, the ID cannot appear more than twice in the same page. Otherwise use class. ul: It was originally an unordered list and is often used in XHTML CSS applications to represent non-structural equivalent elements. Need to be used with UL's child element LI. The following is the quoted content: <div> <ul> <li><a href="#">Link1</a></li> <li><a href="#">Link2</a></li> <li><a href="#">Link3</a></li> </ul> </div> span: If you compare this element with DIV, span is a bag and div is a box (from Xiaoyi: Basic Application of XHTML Code). In fact, div is a block-level element, and span is an inline element (see inline elements and block-level elements). Span can be used to separately define a fragment of elements in a section or a row of elements. for example: The following is the quoted content: <ul> <li><span>(2006-11-13)</span>Summary of XHTML application in XHML CSS layout</li> </ul> By defining span as left/right floating in CSS, the date and title can be displayed on both sides. This is relatively used The following is the quoted content: <ul> <li>2007-11-5jb51.net</li> <li>XHML CSS layout summary</li> </ul> Much simpler. ======================================= After talking about the common XHTML tags used for layout, there are also XHTML tags that are used to display web page content. for example: The following is the quoted content: <img src="" alt="" title="" /> represents an image <a href="" title=""></a> indicates a hyperlink <hn></hn>(n=1,2,...,6) indicates the page content title. h1-h6 are recommended in descending order of importance, with h1 being the most important title (see greengnn: div css naming reference) The original <b></b> and <i></i> tags for bold and italic are replaced by <strong></strong> and <em></em>. |
<<: Docker image analysis tool dive principle analysis
>>: Causes and solutions for cross-domain issues in Ajax requests
Introduction to XHTML tags <br />Perhaps you...
This article example shares the specific code of ...
Table of contents introduction Distinguish betwee...
To put it simply, website construction is about &q...
This article shares with you a detailed tutorial ...
1. What are CSS methodologies? CSS methodologies ...
This article example shares the specific code of ...
Container lifecycle The life cycle of a container...
MySQL Advanced SQL Statements use kgc; create tab...
Table of contents 1. typeof operator 2. instanceo...
Table of contents Portainer manages multiple Dock...
<br />Original text: http://research.microso...
Table of contents Mode Parameters HashHistory Has...
This article shares the specific code of vue unia...
The following is the configuration method under c...