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