margin-collapse.htm

来自「CSS网页布局与美化」· HTM 代码 · 共 87 行

HTM
87
字号
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>Margin Collapsing</title><style type="text/css"><!--/* Pretty Stuff================================== *//* Zero down margin and paddin on all elements */* {  margin: 0;  padding: 0;}body {  font: 100%/1.6 "Lucida Grande", "Lucida Sans", "Lucida Sans Unicode", Verdana, sans-serif;  color: #353535;  padding: 1em;}h1 {  font-size: 2.4em;  font-weight: normal;}.wrapper {  width: 420px;  border: 1px solid gray;  margin: 20px;}/* The Core Technique================================= */#box1 {  margin: 10px;  background-color:#d5d5d5;}#box2 {  margin: 10px;  background-color:#d5d5d5;  padding: 1px;}p {  margin: 20px;  background-color:#90C2F3;}--></style></head><body><div class="wrapper"><div id="box1"><p>This paragraph has a 20px margin.</p></div></div><div class="wrapper"><div id="box2"><p>This paragraph has a 20px margin.</p></div></div></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?