专业编程基础技术教程

网站首页 > 基础教程 正文

html固定定位position值fixed

ccvgpt 2024-08-19 12:15:27 基础教程 17 ℃

固定定位(1)给自身设置宽高(2)设置position:fixed(3)底部元素内顶边距

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">	
	<style type="text/css">
	
		.posi_fixed {
			height: 100px;
			width: 100%;
			position: fixed;
			border: 1px solid red;
		}
	</style>
</head>

<body>
	
	<div class="posi_fixed">
		固定位置样式,顶部内容
	</div>
	
	<div style="height:800px; padding-top:100px;">
		1<br/>
		普通文本信息<br/>
		普通文本信息<br/>
		普通文本信息<br/>
		普通文本信息<br/>
		普通文本信息<br/>
	</div>
	
</body>
	
<script type="text/javascript">
	//
</script>
</html>

html固定定位position值fixed

Tags:

最近发表
标签列表