主页 > 知识库 > css position fixed 左右双定位的实现代码

css position fixed 左右双定位的实现代码

热门标签:农村住宅地图标注 郑州电销外呼系统违法吗 ai电销机器人连接网关 鹤壁手机自动外呼系统怎么安装 跟电销机器人做同事 漳州人工外呼系统排名 威海营销外呼系统招商 中绅电销智能机器人 济南办理400电话

CSS Position(定位)
position 属性指定了元素的定位类型。

position 属性的五个值:

  • static
  • relative
  • fixed
  • absolute
  • sticky

元素可以使用的顶部,底部,左侧和右侧属性定位。然而,这些属性无法工作,除非是先设定position属性。他们也有不同的工作方式,这取决于定位方法。

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
		<style>
			.box{
				width: 1400px;
				height: 1500px;
				margin: 0 auto;
			}
			.box1{
				border: 1px solid #000000;
				height: 200px;
				width: 200px;
			    display: inline-block;
				position: fixed;
		
			}
			.box02{
				    border: 1px solid #006400;
				    height: 1500px;
				    width: 800px;
				    display: inline-block;
				    margin: 0 20px;
				    margin-left: 250px;
			}
			.box03{
				border: 1px solid #006400;
				height: 200px;
				width: 200px;
				display: inline-block;
			    position: fixed;
			}
		</style>
	</head>
	<body>
		<div class="box">
			<div class="box1">123</div>
			<div class="box02">456</div>
			<div class="box03">789</div>
		</div>
	</body>
</html>

到此这篇关于css position fixed 左右双定位的实现代码的文章就介绍到这了,更多相关css position fixed定位内容请搜索脚本之家以前的文章或继续浏览下面的相关文章,希望大家以后多多支持脚本之家!

标签:咸阳 文山 红河 甘南 惠州 萍乡 苏州 营口

巨人网络通讯声明:本文标题《css position fixed 左右双定位的实现代码》,本文关键词  css,position,fixed,左右,双,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《css position fixed 左右双定位的实现代码》相关的同类信息!
  • 本页收集关于css position fixed 左右双定位的实现代码的相关信息资讯供网民参考!
  • 推荐文章