This commit is contained in:
pbg2h23akl 2024-06-27 09:33:13 +02:00
parent 175ec94421
commit 093deefef8
2 changed files with 10 additions and 6 deletions

View File

@ -4,7 +4,7 @@
}
#spielRaum{
width: 1000px;
height: 500px;
height: 1000px;
margin: 0px;
background-color: yellow;
position: relative;
@ -13,7 +13,7 @@ body{
height: 100%;
margin: 0px;
}
#spielFigur1{
#tom{
width: 100px;
height: 200px;
background-color: blueviolet;
@ -21,7 +21,7 @@ body{
bottom: 40px;
left: 200px;
}
#spielFigur2{
#fuchs{
width: 200px;
height: 90px;
background-color: aqua;
@ -29,7 +29,7 @@ body{
top: 80px;
left: 20px;
}
#spielFigur3{
#enemy{
width: 220px;
height: 200px;
background-color: red;

View File

@ -12,8 +12,12 @@
<div id="tom">
<img src="pics/tom_1.png" alt="tom">
<img src="pics/tom_2.png" alt="tom">
<img src="pics/tom_3.png" alt="tom">
</div>
<div id="fuchs">
<img src="pics/fuchs_1.png" alt="fuchs">
</div>
<div id="enemy">
<img src="pics/enemy_1.png" alt="Gegner">
</div>