12周

相对位置绝对位置

.parent{
				margin: 100px auto;
				width: 800px;
				height: 400px;
				border: 10px solid red;
				/*父级设置为相对*/
				position: relative;
			}
			.son{
				width: 100px;
				height: 100px;
				background-color: blue;
				/*子级设置为绝对*/
				position: absolute;
				/*水平向右移动50像素*/
				/*left: 50px;*/
				/*垂直向下移动100像素*/
				/*top: 100px;*/
				left: -110px;
				top: -110px;
			}
posted @ 2026-05-25 20:55  feng-luo  阅读(10)  评论(0)    收藏  举报