frengiferengi
Neues Mitglied
Hallo zusammen,
ich benötige Hilfe für meine Seite. Wenn ich im Moment hingehe und meine Seite groß und klein ziehe rutscht die Div nicht mit, sondern bleibt immer auf der festgelegten Position, das soll nicht passieren. Ich habe schon viel probiert, aber kriege es nicht hin. Wie kann ich das Problem einfach lösen?
meine Seite: https://www.fasamerico.com/
im css Stylesheet:
#gallery {
position: relative;
background: none;
border: none;
}
#gallery figure {
position: absolute;
top: 165;
left: 360;
}
#gallery figcaption {
position: absolute;
left: 1em;
font-size: 2em;
font-weight: bold;
bottom: 0.5em;
color: white;
}
#gallery figure:nth-of-type(1) {
-webkit-animation: bilder 15s 7s infinite;
animation: bilder 15s 7s infinite;
}
#gallery figure:nth-of-type(2) {
-webkit-animation: bilder 15s 2s infinite;
animation: bilder 15s 2s infinite;
}
#gallery figure:nth-of-type(3) {
-webkit-animation: bilder 15s 12s infinite;
animation: bilder 15s 12s infinite;
}
#gallery figure:nth-of-type(4) {
-webkit-animation: wechseln 15s 10s infinite;
animation: wechseln 15s 10s infinite;
}
#gallery figure:nth-of-type(5) {
-webkit-animation: wechseln 15s 5s infinite;
animation: wechseln 15s 5s infinite;
}
#gallery figure:nth-of-type(6) {
-webkit-animation: wechseln 15s infinite;
animation: wechseln 15s infinite;
}
in der index.html:
...</tr><tr>
<div id="gallery">
<figure>
<img src="./fotos/aulas_links_en3.jpg">
<figcaption></figcaption>
</figure>
<figure>
<img src="./fotos/aulas_links_de2.jpg">
<figcaption></figcaption>
</figure><figure>
<img src="./fotos/yingyang.gif" border="0" alt="*** FASAMERICO ALLROUND LOGO***" width="200" height="200">
<figcaption></figcaption>
</figure><figure>
<img src="./fotos/aulas_links_br1.jpg">
<figcaption></figcaption>
</figure>
</div>
</tr>
<tr>.....
ich hoffe, jemand weiss das, vielen Dank!
ich benötige Hilfe für meine Seite. Wenn ich im Moment hingehe und meine Seite groß und klein ziehe rutscht die Div nicht mit, sondern bleibt immer auf der festgelegten Position, das soll nicht passieren. Ich habe schon viel probiert, aber kriege es nicht hin. Wie kann ich das Problem einfach lösen?
meine Seite: https://www.fasamerico.com/
im css Stylesheet:
#gallery {
position: relative;
background: none;
border: none;
}
#gallery figure {
position: absolute;
top: 165;
left: 360;
}
#gallery figcaption {
position: absolute;
left: 1em;
font-size: 2em;
font-weight: bold;
bottom: 0.5em;
color: white;
}
#gallery figure:nth-of-type(1) {
-webkit-animation: bilder 15s 7s infinite;
animation: bilder 15s 7s infinite;
}
#gallery figure:nth-of-type(2) {
-webkit-animation: bilder 15s 2s infinite;
animation: bilder 15s 2s infinite;
}
#gallery figure:nth-of-type(3) {
-webkit-animation: bilder 15s 12s infinite;
animation: bilder 15s 12s infinite;
}
#gallery figure:nth-of-type(4) {
-webkit-animation: wechseln 15s 10s infinite;
animation: wechseln 15s 10s infinite;
}
#gallery figure:nth-of-type(5) {
-webkit-animation: wechseln 15s 5s infinite;
animation: wechseln 15s 5s infinite;
}
#gallery figure:nth-of-type(6) {
-webkit-animation: wechseln 15s infinite;
animation: wechseln 15s infinite;
}
in der index.html:
...</tr><tr>
<div id="gallery">
<figure>
<img src="./fotos/aulas_links_en3.jpg">
<figcaption></figcaption>
</figure>
<figure>
<img src="./fotos/aulas_links_de2.jpg">
<figcaption></figcaption>
</figure><figure>
<img src="./fotos/yingyang.gif" border="0" alt="*** FASAMERICO ALLROUND LOGO***" width="200" height="200">
<figcaption></figcaption>
</figure><figure>
<img src="./fotos/aulas_links_br1.jpg">
<figcaption></figcaption>
</figure>
</div>
</tr>
<tr>.....
ich hoffe, jemand weiss das, vielen Dank!