DerNeuling21
Mitglied
Hallo Community,
ich frange mit HTMl/CSS gerade erst an und bin auf meine 1. 2 Problem gestoßen.
1:Warum ensteht hier bei mir ein Rand am Bild:

Das Original Bild hat das nicht.
2: Warum wir der Container (div) nicht erstellt ?
Danke für eure Hilfe!!
ich frange mit HTMl/CSS gerade erst an und bin auf meine 1. 2 Problem gestoßen.
1:Warum ensteht hier bei mir ein Rand am Bild:

Das Original Bild hat das nicht.
2: Warum wir der Container (div) nicht erstellt ?
Danke für eure Hilfe!!
HTML:
<html>
<head>
<title>Wolly's Musik Stream</title>
<link rel="shortcut icon" href="YouTubeLogo.png">
<link rel="stylesheet" href="design.css">
</head>
<boady>
<div class="logboa" >
</div>
</boady>
</html>
Code:
html, body {
background-image: url("Call%20of%20Duty%20WW%20II.jpg");
background-position: left top;
background-repeat: no-repeat;
background-size: 102% auto;
}
#logboa {
background-color: aquamarine;
background-position: 50% 200px;
height: 100px;
width: 100px;
}