為不同的CSS樣式規則設定媒體查詢,您可以嘗試執行以下程式碼−
即時示範
<html> <head> <style> body { background-color: lightpink; } @media screen and (max-width: 420px) { body { background-color: lightblue; } } </style> </head> <body> <p>If screen size is less than 420px, then it will show lightblue color, or else it will show light pink color</p> </body> </html>
以上是為不同尺寸設備設定不同CSS樣式規則的媒體查詢的詳細內容。更多資訊請關注PHP中文網其他相關文章!