比如你这个是DIV,还是LI,,等,有没有reset默认样式。
没有reset默认样式的话,很多元素默认是带有padding和margin(内外边距)
这种问题跟你的布局关系也会出来这种问题。。。
所以说这种东西,可不是看图就能解决的,最好有代码。
*{font-size:14pxcolor:#000} 已经规定了全文的格式根据优先级
判断a、链入外部样式 ----------------<link href="" rel="stylesheet" type="text/css">
b、内部样式表 -----------------<style type="text/css">*{margin:0pxpadding:0px}</style>
c、 内嵌样式 ------------------<body style="background-color:black"></body>
d、导入外部样式 -------------------<style type="text/css">@import"myStyle.css"</style>