固定定位:(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>