[[404070]] Hello everyone, I am IT sharer, also known as Pipi. In this article, we will talk about CSS web page layout. 1. Web page layout There are many ways to layout a web page, which is generally divided into the following parts: header area, menu navigation area, content area, and bottom area. 1. Head area The header area is located at the top of the entire web page and is generally used to set the title of the web page or the logo of the web page: example - <!DOCTYPE html>
- <html>
- <head>
- <meta charset= "utf-8" >
- <title>CSS Project (runoob.com)</title>
- <meta name = "viewport" content= "width=device-width, initial-scale=1" >
- <style>
- body {
- margin: 0;
- }
-
- /* Header style */
- .header {
- background-color: #f1f1f1;
- padding: 20px;
- text-align: center;
- }
- </style>
- </head>
- <body>
-
- <div class= "header" >
- <h1>Header area</h1>
- </div>
-
- </body>
- </html>
2. Menu navigation area The menu navigation bar contains some links that can guide users to browse other pages: example - /* Navigation bar */
- .topnav {
- overflow: hidden;
- background-color: #333;
- }
-
- /* Navigation links */
- .topnav a {
- float : left ;
- display: block;
- color: #f2f2f2;
- text-align: center;
- padding: 14px 16px;
- text-decoration: none;
- }
-
- /* Link - change color */
- .topnav a:hover {
- background-color: #ddd;
- color: black;
- }
3. Content Area Content areas generally come in three forms: 1 column: generally used on mobile devices. 2 columns: Generally used for tablet devices. 3 columns: generally used for PC desktop devices. Unequal columns Unequal columns usually have the content area in the middle, which is also the largest and most important part. The left and right sides can be used for navigation and other related content. The total width of these three columns is 100%. example: - .column {
- float : left ;
- }
-
- /* Width of left and right sidebars */
- .column .side {
- width: 25%;
- }
-
- /* Middle column width */
- .column .middle {
- width: 50%;
- }
-
- /* Responsive layout - set up top and bottom layout when width is less than 600px */
- @media screen and ( max -width: 600px) {
- . column .side, . column .middle {
- width: 100%;
- }
- }
4. Bottom area The bottom area is at the very bottom of the web page and generally contains copyright information and contact information. example - .footer {
- background-color: #F1F1F1;
- text-align: center;
- padding: 10px;
- }
2. Responsive Web Page Layout Through the above learning, we can create a responsive page, the layout of the page will be adjusted according to the size of the screen: Case - <!DOCTYPE html>
- <html>
- <head>
- <meta charset= "utf-8" >
- <title>Project</title>
- <style>
- * {
- box-sizing: border-box;
- }
-
- body {
- font-family: Arial;
- padding: 10px;
- background: #f1f1f1;
- }
-
- /* Header title */
- .header {
- padding: 30px;
- text-align: center;
- background: white;
- }
-
- .header h1 {
- font- size : 50px;
- }
-
- /* Navigation bar */
- .topnav {
- overflow: hidden;
- background-color: #333;
- }
-
- /* Navigation bar link */
- .topnav a {
- float : left ;
- display: block;
- color: #f2f2f2;
- text-align: center;
- padding: 14px 16px;
- text-decoration: none;
- }
-
- /* Change link color */
- .topnav a:hover {
- background-color: #ddd;
- color: black;
- }
-
- /* Create two columns */
- /* Left column */
- .leftcolumn {
- float : left ;
- width: 75%;
- }
-
- /* Right column */
- .rightcolumn {
- float : left ;
- width: 25%;
- background-color: #f1f1f1;
- padding- left : 20px;
- }
-
- /* Image part */
- .fakeimg {
- background-color: #aaa;
- width: 100%;
- padding: 20px;
- }
-
- /* Article card effect */
- .card {
- background-color: white;
- padding: 20px;
- margin- top : 20px;
- }
-
- /* Clear float after column */
- .row: after {
- content: "" ;
- display: table ;
- clear: both;
- }
-
- /* Bottom */
- .footer {
- padding: 20px;
- text-align: center;
- background: #ddd;
- margin- top : 20px;
- }
-
- /* Responsive layout - when the screen size is less than 800px, the two-column layout is changed to a top-down layout */
- @media screen and ( max -width: 800px) {
- .leftcolumn, .rightcolumn {
- width: 100%;
- padding: 0;
- }
- }
-
- /* Responsive layout - When the screen size is less than 400px, the layout of navigation and other elements is changed to top-down layout */
- @media screen and ( max -width: 400px) {
- .topnav a {
- float : none;
- width: 100%;
- }
- }
- </style>
- </head>
- <body>
-
- <div class= "header" >
- <h1>My Page</h1>
- <p>Resize your browser to see the effect.</p>
- </div>
-
- <div class= "topnav" >
- <a href="#" > Link</a>
- <a href="#" > Link</a>
- <a href="#" > Link</a>
- <a href= "#" style= "float:right" > Link</a>
- </div>
-
- <div class= "row" >
- <div class= "leftcolumn" >
- <div class= "card" >
- <h2>Article Title</h2>
- <h5>xx year xx month xx day</h5>
- <div class= "fakeimg" style= "height:200px;" ><img src= "img/bird.png" ></div>
- <p>Text...</p>
- <p>When enthusiasm becomes a habit, fear and worry have no place to stay. People who lack enthusiasm also have no clear goals. Enthusiasm makes the wheels of imagination turn. A person without enthusiasm is like a car without gasoline.
- The happiest person is one who is good at arranging play and work, and keeps enthusiasm for both. Enthusiasm makes ordinary topics lively. ! </p>
- </div>
- <div class= "card" >
- <h2>Article Title</h2>
- <h5>xx year xx month xx day</h5>
- <div class= "fakeimg" style= "height:200px;" ><img src= "img/border.png" ></div>
- <p>Text...</p>
- <p>Everything cannot be perfect, but we can only strive to do our best. This way, we will be stress-free and the results will be better! </p>
- </div>
- </div>
- <div class= "rightcolumn" >
- <div class= "card" >
- <h2>About me</h2>
- <div class= "fakeimg" style= "height:100px;" ></div>
- <p>6666</p>
- </div>
- <div class= "card" >
- <h3>Hot Articles</h3>
- <div class= "fakeimg" ><img src= "img/fy2_wp.png" >\</div>
-
- </div>
- <div class= "card" >
- <h3>Follow me</h3>
- <p>The systems and software released on this website are only for personal learning and testing. Please delete them within 24 hours after downloading.
- It cannot be used for any commercial purpose. Otherwise, you will be responsible for the consequences. Please support the purchase of genuine software! If your rights are infringed, please notify us in time and we will deal with it in time.
-
- Statement: This is a non-profit website and does not accept any sponsorship or advertising. </p>
- </div>
- </div>
- </div>
-
- <div class= "footer" >
- <h2>Bottom Area</h2>
- </div>
-
- </body>
- </html>
Conclusion This article mainly introduces the Html web page layout structure, how to understand the layout of the network, and introduces three common web page modes for mobile devices. Finally, through a small project, it summarizes the previous content. The code is simple, I hope it helps you learn. |