Witam,
Pomiędzy zdjęciami, które mają być ułożone obok siebie w pojemniku img, występuje niewielki odstęp, jak go zniwelować?
Pozdrawiam.
<!DOCTYPE HTML>
<html lang="pl">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE edge, chrome 1 " />
<title>Strona testowa</title>
<meta name="description" content=krotki opis />
<meta name="keywords" content=tagi />
<link rel="stylesheet" type="text/css" href="style.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap&subset=latin-ext" rel="stylesheet">
</head>
<body>
<div class="logo">Lorum Ipsum</div>
<div class="img">
<img src="iphone.jpg" alt="tel">
<img src="iphone.jpg" alt="tel">
<img src="iphone.jpg" alt="tel">
</div>
</body>
</html>
body {
background-color: #759f29;
margin: 0;
}
.logo {
width: 50%;
border: solid 1px white;
margin-top: 25px;
margin-right: auto;
margin-left: auto;
text-align: center;
font-size: 30px;
padding: 10px;
font-family: 'Roboto', sans-serif;
color: #fff;
}
.img {
width: 100%;
height: 300px;
border: solid white 1px;
margin-top: 20px;
display: inline-block;
}