Dieser Artikel stellt Ihnen vor, wie HTML5 das Margin-Top-Collapse-Problem löst (mit Code). Ich hoffe, dass er Ihnen als Referenz dienen wird.
<!DOCTYPE html> <html lang="en"> <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> .box{ width: 400px; height: 400px; background-color: red; /* 解决margin-top塌陷问题 */ /* 1.设置border padding */ /* border: 1px solid green; */ /* padding: 1px; */ /* 2.设置overflow */ overflow: hidden; } /* 3.通过伪类 实际开发使用 */ .clearfix:before{ content: ""; display: table; } .box1{ width: 100px; height: 100px; background-color: green; margin-top: 50px; } </style> </head> <body> <p class="box clearfix"> <p class="box1"></p> </p> </body> </html>
Der Betriebseffekt ist wie folgt:
Verwandte Empfehlungen:
Verwendung von Video-Tags in HTML5 : So füllen Sie das übergeordnete div-Tag automatisch aus
HTML5-Attribut: Verwendungsbeispiel des Margin-Attributs
Das obige ist der detaillierte Inhalt vonSo lösen Sie das Rand-Top-Kollaps-Problem in HTML5 (Code im Anhang). Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!