footer 中加了标签就会和上一个div中间出现了白色间隔
网页头部
脚部
html, body { width: 100%; height: 100%; margin: 0px; padding: 0px; color: white; text-align:center } header { background-color: #4CAF50; height: 10% } nav { height: 40%; width: 100%; } footer{ background-color: #; height: 10%; background-color: #FFC90E; } #computer { width: 100%; height: 100%; background-color: #F36F36; margin: auto; } #mobile { width: 100%; height: 100%; background-color: #00A89C; }nav { -webkit-transition: width 2s, height 2s, -webkit-transform 2s; /* For Safari 3.1 to 6.0 */ transition: width 2s, height 2s, transform 2s; /*background-color: #F36F36;*/}nav:hover { -webkit-transform: rotate(180deg); /* Chrome, Safari, Opera */ transform: rotate(180deg);}
footer中不写标签则全部贴合在一起 |
免责声明:本内容仅代表回答会员见解不代表天盟观点,请谨慎对待。
版权声明:作者保留权利,不代表天盟立场。
|
|
|
|
是因为h3标签有默认的margin值,你可以试试h3{
margin: 0;
} 就可以了 |
|
|
|
|
写页面最好加入reset.css或者normalize.css这些重置样式的层叠样式表
回到问题
因为h3标签有默认外边距 margin 所以会你所说的缝隙
给h3设置margin:0;就不会了 |
|
|
|
|