From 4748a1beb89a67d43ecbed16ac3090caee18c8e7 Mon Sep 17 00:00:00 2001 From: oldoc63 Date: Sat, 26 Mar 2022 16:37:59 -0400 Subject: [PATCH] Specific screen sizes can be targeted by setting multiple width and height media features #768 --- mediaQueries/css/style.css | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/mediaQueries/css/style.css b/mediaQueries/css/style.css index 50f5bdf..b15feed 100644 --- a/mediaQueries/css/style.css +++ b/mediaQueries/css/style.css @@ -121,4 +121,10 @@ nav a { width: 270px; } -} \ No newline at end of file +} + +@media only screen and (min-width: 320px) and (max-width: 480px){ + .gallery-item .thumbnail { + width: 95%; + } + } \ No newline at end of file