博客列表 >2018/03/26(固定定位)

2018/03/26(固定定位)

梁凯达的博客
梁凯达的博客原创
2018年04月01日 16:03:35742浏览

重点:

           固定定位是常见用来写广告位,联系方式等的滚动浮动实现方法

实现:

    position:fixed;

   top:20px;

    left:100px;



代码部分:

实例

<!DOCTYPE html>
<html lang="zh">
<head>
	<meta charset="UTF-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1.0" />
	<meta http-equiv="X-UA-Compatible" content="ie=edge" />
	<title>Document</title>
	<style>
		body{
			height: 2000px;
		}
		.box{
			height: 200px;
			width: 200px;
			background: yellow;
			position: fixed;
			top: 20px;
			left: 100px;
		}
		
	</style>
</head>
<body>
	 <div class="box">
	 </div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议