Detailed explanation of usage of position: fixed attribute

巴扎黑
Release: 2017-07-18 17:08:17
Original
2267 people have browsed it

<!DOCTYPE html>
<html>
<head>
<title>当锚点定位遇上position: fixed</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
}

body {
position: relative;
}

a {
color: white;
text-decoration: none;
}

.nav {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100px;
background-color: black;
}

.part-one,
.part-two,
.part-three {
width: 100%;
height: 800px;
}

.part-one {
background-color: red;
padding-top: 100px;
}

.part-two {
background-color: blue;
padding-top: 100px;
margin-top: -100px;
}

.part-three {
background-color: yellow;
padding-top: 100px;
margin-top: -100px;
}
</style>
</head>
<body>
<div class="nav">
<a href="#part-one">part one</a>
<a href="#part-two">part two</a>
<a href="#part-three">part three</a>
</div>
<div class="part-one" id="part-one">I&#39;m part one</div>
<div class="part-two" id="part-two">I&#39;m part two</div>
<div class="part-three" id="part-three">I&#39;m part three</div>
</body>
</html>
Copy after login
<!DOCTYPE html>
<html>

	<head>
		<title>CSS解决有固定导航时链接锚点定位偏移</title>
		<style type="text/css">
			* {
				margin: 0;
				padding: 0;
			}
			
			body {
				position: relative;
			}
			
			a {
				color: white;
				text-decoration: none;
			}
			
			.nav {
				position: fixed;
				top: 0;
				left: 0;
				width: 100%;
				height: 100px;
				background-color: black;
			}
			
			.part-one,
			.part-two,
			.part-three {
				width: 100%;
				height: 800px;
			}
			
			.part-one {
				background-color: red;
				padding-top: 100px;
			}
			
			.part-two {
				background-color: blue;
				padding-top: 100px;
				margin-top: -100px;
			}
			
			.part-three {
				background-color: yellow;
				padding-top: 100px;
				margin-top: -100px;
			}
		</style>
	</head>

	<body>
		<div class="nav">
			<a href="#part-one">part one</a>
			<a href="#part-two">part two</a>
			<a href="#part-three">part three</a>
		</div>
		<div class="part-one" id="part-one">I&#39;m part one</div>
		<div class="part-two" id="part-two">I&#39;m part two</div>
		<div class="part-three" id="part-three">I&#39;m part three</div>
	</body>

</html>
Copy after login

  

The above is the detailed content of Detailed explanation of usage of position: fixed attribute. 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 admin@php.cn
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!