2022年2月6日
摘要: 相对定位 <title>相对定位</title> <style> .box1 { position: relative; top: 100px; left: 100px; width: 200px; height: 200px; background-color: pink; } .box2 { w 阅读全文
posted @ 2022-02-06 16:27 cookie的笔记簿 阅读(57) 评论(0) 推荐(0) 编辑
摘要: 为什么要清除浮动 浮动是什么在这里不做讲解。 父元素里面包含两个浮动的子元素,下面设置了一个footer。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-02-06 09:26 cookie的笔记簿 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 问题一:外边距合并 <title>外边距合并-相邻块级元素垂直外边距合并</title> <style> .damao, .ermao { width: 200px; height: 200px; background-color: pink; } .damao { margin-bottom: 1 阅读全文
posted @ 2022-02-06 09:14 cookie的笔记簿 阅读(82) 评论(0) 推荐(0) 编辑