Hallo
Wenn ich meine Webseite Responsiv (gut les und navigierbar für Tablets/ Smartphones) machen will, dann brauche ich CSS/Media Queries.
zb:
Welche andere PX (Zahlen) sollten noch berücksichtig werden ausser min-width: 768px ?
Ich habe so gedacht:
Wäre es so in Ordnung? oder braucht es zb. 320px nicht ?
Danke.
Wenn ich meine Webseite Responsiv (gut les und navigierbar für Tablets/ Smartphones) machen will, dann brauche ich CSS/Media Queries.
zb:
CSS:
@media only screen and (min-width: 768px){
.text-a {
height: 500px;
width:450px;
margin-left: 12%;
}}
Welche andere PX (Zahlen) sollten noch berücksichtig werden ausser min-width: 768px ?
Ich habe so gedacht:
- (min-width: 320px)
- (min-width: 550px)
- (min-width: 768px)
- (min-width: 960px)
Wäre es so in Ordnung? oder braucht es zb. 320px nicht ?
Danke.