摘要:
相对定位 <title>相对定位</title> <style> .box1 { position: relative; top: 100px; left: 100px; width: 200px; height: 200px; background-color: pink; } .box2 { w 阅读全文
摘要:
为什么要清除浮动 浮动是什么在这里不做讲解。 父元素里面包含两个浮动的子元素,下面设置了一个footer。 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="wi 阅读全文
摘要:
问题一:外边距合并 <title>外边距合并-相邻块级元素垂直外边距合并</title> <style> .damao, .ermao { width: 200px; height: 200px; background-color: pink; } .damao { margin-bottom: 1 阅读全文