作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我有一个元素,我想在 750px 和 500px 处更改:
.footer-logo img {
content:url(...);
}
然后:
@media only screen and (max-width: 700px) {
.footer-logo img{
margin-top: -58px !important;
padding:64px;
}
}
@media only screen and (max-width: 500px) {
.footer-logo img {
width: 80vw !important;
max-width:none !important;
margin-top:-10px !important;
}
500px 发生变化,但在 700px 测试时不会发生变化。我知道我不应该使用 !important 这么多,但是没有它就不会出现样式......感谢任何帮助
最佳答案
你可以试试这个。请查看 div 颜色变化 根据媒体查询
HTML
<div class="footer-logo">
<img src="http://dummyimage.com/100x50/000/fff&text=Throbble!">
</div>
CSS
@media only screen and (max-width: 700px) {
.footer-logo > img{
margin-top: -58px !important;
padding:64px;
}
.footer-logo {
background-color:yellow;
}
}
@media only screen and (max-width: 500px) {
.footer-logo > img {
width: 80px !important;
max-width:none !important;
margin-top:-10px !important;
}
.footer-logo {
background-color:red;
}
}
关于css - 特定的媒体查询没有压倒一切?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45312586/
我想知道,在设计一个供其他人使用的框架时,类有一些功能作为默认行为,并希望其客户在必要时覆盖它,这是否会让人皱眉。一个例子如下: public class RecordProcessor {
我是一名优秀的程序员,十分优秀!