How can I remove the padding from an . The style "display: block" (mentioned in many other solutions) doesn't seem to solve the problem.
<!DOCTYPE html>
<html>
<head>
<style>
img {
display: block;
width: 100%;
}
</style>
</head>
<body>
<img src="https://imgur.com/CahbpxJ.jpg" width="100%">
</body>
</html>
Answer from CBroe's comment. The body tag has its own default margin. To fix the problem add this in the style tag: