-1
嘗試將媒體查詢應用於某個特定的div,但沒有任何事情發生。將媒體查詢應用於元素
<style>
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
.rating {
margin: auto;
}
</style>
嘗試將媒體查詢應用於某個特定的div,但沒有任何事情發生。將媒體查詢應用於元素
<style>
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
.rating {
margin: auto;
}
</style>
看來你已經錯過了}
後.rating
<style>
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
.rating {
margin: auto;
}
} /* <-- this one you missed */`enter code here`
</style>
此外,如果它不是設備,您可以嘗試改變min-device-width
到min-width
同爲最大寬度。
也相應檢查設備的分辨率和不忘記補充meta
標籤
你在哪裏測試此代碼?移動設備?桌面瀏覽器? – makshh
你想達到什麼目的? –
chrome desktop @makshh –