media query for phone works but not tablet
问题 I am using media query in my css and I was able to adjust it to look good on mobile on the page I'm working on, but the tablet keeps the font the same size and doesn't adjust like I want. How can I have one single media query that adjusts both for tablet AND phone? <style> .kppr { margin-top: -8%; margin-left: 8%; } .kppr p { color: #89d4e8; font-size: 400%; font-weight: bold; } @media only screen and (max-width: 700px){ .kppr { margin-top: -15%; } .kppr p { font-size: 125%; } .kppr img {