龙空技术网

html固定定位position值fixed

阿亮坚持 124

前言:

今天你们对“css右边固定”大体比较关注,看官们都想要了解一些“css右边固定”的相关文章。那么小编同时在网络上汇集了一些对于“css右边固定””的相关知识,希望姐妹们能喜欢,同学们一起来了解一下吧!

固定定位:(1)给自身设置宽高。(2)再设置position:fixed

<!DOCTYPE html><html><head><meta charset="utf-8">    <style type="text/css">		.posi_flex{			height: 100px;			width: 100%;			position: fixed;			border: 1px solid red;		}	</style></head><body>	<div class="posi_flex">		这是顶部元素内容固定在顶部的	</div>		<div style="height:800px; padding-top:116px;">1</div>	普通文本信息<br/>	普通文本信息<br/>	普通文本信息<br/>	普通文本信息<br/>	普通文本信息<br/></body><script type="text/javascript"></script></html>

标签: #css右边固定