Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
无论我尝试什么,我的图像左侧总是有空间。我已经剥离了所有内容,下面是一张图片。Chrome 的 css 检查器说 body 继承了 8 px 的 margin-left;(见下图)有没有办法让图像与左边缘齐平?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <img src="../images/warn.png"/> </html>
放
position:absolute
然后你可以指定左、右、上、下
浏览器内置了默认样式 - 尝试覆盖 CSS 中的边距(也就是说,只需将其设置为0px)。
0px
body { margin: 0px; }