最近发现一个很奇葩的问题,Header标签的内外边距设置无效,我的CSS代码如下:
header{
margin: 0;
padding: 0;
}
这样单独选着此标签设置无效,而采用通配符*号设置又有效了:
*{
margin: 0;
padding: 0;
}
不知大家有没有遇到这样的情况,貌似单独清除Header标签的内外边距无效,ID或CLASS都一样,只有*号才管用??
PHP中文网2017-04-17 14:25:13
Are you sure it is a problem with the header tag and not the default of the body tag?