我正在尝试在移动设备上增加页脚img(社交媒体图标)的宽度。但是,当我更改媒体查询的宽度时,什么也没有发生。我用“页脚img”更改了原始CSS的宽度,并且可以正常工作。然后我想我意识到我的媒体查询都没有用。为什么我的媒体查询没有生效?
ORIGINAL CSS
footer img {
width: 40px;
}
a {
color: white;
text-decoration: none;
}
a:hover {
color: #0077C0;
}
h1 {
text-align: center;
margin-top: 25px;
}
h4 {
margin: 0px 125px 0px 125px;
}
.alignleft {
float: left;
margin-left: 15px;
}
.alignright {
float: right;
margin-right: 15px;
height: 30%;
}
MEDIA QUERIES {
/*iPhone 6/7/8 and iPad*/
@media (max-width: 450px) {
#index {
background-position: 41% 59%;
}
.grid-container {
height: 100vh;
}
.grid-item {
font-size: 25px;
}
.name {
font-size: 32px;
}
.grid-item img {
max-height: 70%;
width: 100%;
}
.WhiteHouse img {
max-height: 55%;
}
.alignleft {
float: none;
text-align: center;
}
.alignright {
float: none;
text-align: center;
margin-left: 7%;
}
#GitHub {
width: 25%;
}
footer img {
width: 50%;
}
}
答案 0 :(得分:4)
不要将您的媒体查询包装在MEDIA QUERIES {}
中还尝试将其放在html页面的head标签内。
<meta name="viewport" content="width=device-width, initial-scale=1">