Hallo,
ich habe an einer Stelle ein Problem mit den MediaQueries.
Ich habe bei "@media screen and (max-width: 1100px) " ein div in der breite geändert. Allerdings springen mir die Browser schon bei ca 1250px in diesen Mediaquerie. Hat jemand von euch eine Idee woran das liegt? Ansonsten funktionieren alle einwandfrei.
Hier mal ein Stück Code:
Code
@media screen and (max-width: 650px) {
#Name img{
max-width:140%;
max-height:auto;
}
}
@media screen and (max-width: 1100px) {
#Name{
max-width:960px;
}
#Name .textwidget{
padding-right: 73.%;
}
}
@media screen and (max-width: 1080px) {
#Name .textwidget{
padding-right: 74%;
}
}
@media screen and (max-width: 480px) {
body.custom-background{
background:none;
}
#Name.textwidget{
padding-right:71.8%;
}
}
Alles anzeigen
Ich hoffe sehr ihr habt eine Idee für mich.
Vielen Dank
Nadja