search
HomeWeb Front-endHTML TutorialCSS DIV--essential foundation for front-end er_html/css_WEB-ITnose

 

B/S is really a stage of gaining knowledge. I have learned a lot of necessary languages ​​for the front end. As time goes by, I thought I still don’t know what I learned in the news release system. I have long lost my impression of what it is. But on the contrary, it became even more profound. I didn’t know what CSS was at that time, so I learned to write CSS. Before I even knew what asynchronous communication was, I learned how to use AjaX. When I saw the classic frame in the video, I realized that this was the CSS DIV used in the news release system! (⊙o⊙)Oh, it turns out I already knew how to write!


1. Why is DIV CSS


Seeing this combination, I was wondering why it is such a combination? Can’t Span! Can't you just use HTML directly? A very clear purpose: to separate data content from data format and facilitate front-end ER development and maintenance. Imagine the statement of an internally linked style sheet

<span style="font-family:KaiTi_GB2312;font-size:18px;"><link href="%EF%BC%88css%E6%A0%B7%E5%BC%8F%E8%A1%A8%EF%BC%89" rel="stylesheet" type="text/css"></span>

If you need to modify the style of any front-end element, just look for the ID or category name in the style sheet. This undoubtedly greatly improves the efficiency of development.


Another question is why can’t Span? The difference between SPAN and DIV is that DIV (division) is a block-level element that can contain paragraphs, titles, tables, and even chapters, abstracts, notes, etc. SPAN is an inline element. There will be no line breaks before and after SPAN. It has no structural meaning and is purely for applying styles. When other inline elements are not suitable, SPAN can be used.



2. Implement DIV CSS step by step


Step ONE: DIV block


First of all, we must consider that the web page is divided into several display parts. Banner and Footer are necessary. The display of other content is a matter of personality and is assigned to the corresponding DIV block.





Step Two: DIV positioning??box Model


Using CSS style sheet to position the DIV, we need to use our box model, as its name suggests, the box is used to store things, it can be arbitrary move. Of course a more technical word, we call it float. The following is a display of the box model, margin, border, and padding. If you can relate to the images on the walls of a photo studio, that would be great!










Step Three: Overall Architecture


The following code is an interpretation of the first prototype, which is the implementation result of a very basic CSS DIV. The box floating effect is used, allowing the content module and link module to float to the left and right respectively.



<style type="text/css"><!--body {	margin:0px;	font-size:13px;	font-family:Arial;} #container{	position:relative;	width:100%;}#banner{	height:80px;	border:1px solid #000000;	text-align:center;	background-color:#a2d9ff;	padding:10px;	margin-bottom:2px;}#content{	float:left;	text-align:center;	padding-right:200px;	/* 内容往回挤200px */}#links{	float:right;	width:200px;	border:1px solid #000000;	margin-left:-200px;		/* 强行往左拉回200px */	text-align:center;}#footer{	clear:both;				/* 不受float影响 */	text-align:center;	height:30px;	border:1px solid #000000;}--></style><title>CSS排版</title><div id="container">	<div id="banner">banner</div>	<div id="content">		<div class="blog">			<div class="date">date</div>			<div class="blogcontent">content content content content content content content content content content<br>content content content content content content content content content content<br>content content content content content content content content content content<br>content content content content content content content content content content<br>content content content content content content content content content content<br>content content content content content content content content content content<br>content content content content content content content content content content<br>content content content content content content content content content content<br>content content content content content content content content content content<br>content content content content content content content content content content<br>content content content content content content content content content content<br>content content content content content content content content content content<br>content content content content content content content content content content<br>content content content content content content content content content content<br>			</div>		</div>		<div class="others">others</div>	</div>	<div id="links">		<div class="calendarhead">links<br>links<br>links<br>links</div>		<div class="calendartable">links<br>links<br>links<br>links</div>		<div class="side">links<br>links<br>links<br>links</div>		<div class="syndicate">links<br>links<br>links<br>links</div>		<div class="friends">links<br>links<br>links<br>links</div>	</div>	<div id="footer">footer</div>
</div>



The rendering is as follows:





3. Summary


With the combination of CSS and DIV, the loading of web pages becomes easier, because the separation of data and format makes maintenance easier. The improvement of search efficiency and browsing efficiency will bring a good user experience. So... Such a simple source code frontend composed of CSS DIV is the necessary foundation for us to learn front-end development.





Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools