Guten Tag oder Nacht je nachdem wann du das liest.
Und zwar bin ich relativ neu in CSS und hab ein Problem mit der CSS das ab einer bestimmten Größe wie zb 360px nicht angesprochen werden und ich somit keine Änderung vornehmen kann.
hier ist der code um den es sich handelt.
Im Inspector kann ich erst ab 981px was ändern
Ich bin für jede Hilfe Dankbar
Und zwar bin ich relativ neu in CSS und hab ein Problem mit der CSS das ab einer bestimmten Größe wie zb 360px nicht angesprochen werden und ich somit keine Änderung vornehmen kann.
CSS:
@media screen and (max-width: 360px) {
.themenkachel_btn_text11 {
margin-top: 15px !important;
width: 80% !important;
font-size: 18px !important;
font-weight: 700;
}
}
@media screen and (min-width: 360px) {
.themenkachel_btn_text11 {
margin-top: 15px !important;
width: 80% !important;
font-size: 18px !important;
font-weight: 700;
}
}
@media screen and (min-width: 480px) {
.themenkachel_btn_text11 {
margin-top: 15px !important;
width: 80% !important;
font-size: 20px !important;
font-weight: 700;
}
}
@media screen and (min-width: 765px) {
.themenkachel_btn_text11 {
margin-top: 15px !important;
width: 80% !important;
font-size: 20px !important;
font-weight: 700;
}
}
@media screen and (min-width: 981px) {
.themenkachel_btn_text11 {
padding-top: 30px !important;
padding-right: 40px !important;
padding-bottom: 30px !important;
padding-left: 40px !important;
}
}
@media screen and (min-width: 1200px) {
.themenkachel_btn_text11 {
margin-top: 15px !important;
padding-left: 50px !important;
width: 80% !important;
}
}
@media screen and (min-width: 1400px) {
.themenkachel_btn_text11 {
margin-top: 15px !important;
padding-left: 50px !important;
}
}
hier ist der code um den es sich handelt.
Im Inspector kann ich erst ab 981px was ändern
Ich bin für jede Hilfe Dankbar
Zuletzt bearbeitet von einem Moderator: