How to make the head and tail fixed in html5

青灯夜游
Release: 2022-04-25 14:30:56
Original
4115 people have browsed it

Fixing method: 1. Use the header tag to define the head content of the document, and add the "position:fixed;top:0;" style to make it fixed; 2. Use the footer tag to define the tail content, and add The "position: fixed;bottom: 0;" style makes it fixed.

How to make the head and tail fixed in html5

The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.

html5 Methods to keep the head and tail fixed:

1. Keep the head fixed

Use the header tag to define the header, and add the "position:fixed;top: 0;" style to make it fixed







网站标题








测试文本!测试文本!测试文本!测试文本!测试文本!测试文本!测试文本!测试文本!
Copy after login

How to make the head and tail fixed in html5

Instructions :

header: Tag defines the header of a "web page" or "section".

Usually contains h1-h6 elements or hgroups as the title of the entire page or a content block. You can also wrap the table of contents part of a section, a search box, a nav, or any related logo.

2. Keep the tail fixed

Use the footer tag to define the tail content and add the "position:fixed;bottom: 0;" style to make it Fixed

footer{
width: 100%;
height: 100px;
background-color: paleturquoise;
position: fixed;
bottom: 0;
}

文档尾部内容
Copy after login

How to make the head and tail fixed in html5

Description:

footer tag: represents the footer of "web page" or "section".

Usually contains some basic information about the section, such as: author, related document links, and copyright information.

If the footer elements contain the entire section, then they represent appendices, indexes, promotions, license agreements, tags, categories, and other similar information.

Extended knowledge: fixed positioning:

When the position attribute of an element is set to fixed, the element is fixed, and the fixed element will not Changes position as the scroll bar is dragged. The position of fixedly positioned elements does not change within the field of view.

Fixed fixed positioning and absolute positioning are similar. They both allow elements to be displaced and separated from the document flow.

position:fixed;
top:像素值;
bottom;像素值;
left:像素值;
right:像素值;
Copy after login

"position:fixed;" is used in combination with the four attributes top, bottom, left and right. "position:fixed;" makes the element a fixed positioning element, and then uses top, bottom, The four attributes left and right are used to set the position of the element relative to the browser.

Not all of the four attributes top, bottom, left and right are used. Note that the reference objects of these four values ​​are the four edges of the browser.

【Related recommendations: html video tutorial, web front-end

The above is the detailed content of How to make the head and tail fixed in html5. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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 [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!