作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试找到一种放置标题和副标题的方法,以便它们彼此对齐。但是当我让它适合一台设备时,文本在另一台设备上跳来跳去。这意味着我只是在兜圈子。
有没有一种方法可以让我在所有移动设备上说边距应该是 fx:从左边算起 20px,或者你们是怎么做到的?
HTML
<div class="max-container-fluid">
<div class="row">
<div class="col-lg-12">
@CurrentPage.GetGridHtml("Grid")
</div>
</div>
</div>
CSS
.header-text h1 {
font-weight: 900;
font-size: 40px;
line-height: 1;
text-transform: uppercase;
color: #fff;
padding-top: 160px;
}
.header-text h2 {
font-size: 20px !important;
margin-bottom: 25px;
font-weight: 900;
color: #fff;
}
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
.header-text h2 {
font-size: 20px !important;
margin-left: 20px;
font-weight: 900;
}
最佳答案
试试这个:
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
.header-text h2, .header-text h1 {
margin-left: 20px;
}
}
如果其他值保持不变,则无需重复所有其他值 — 您还会注意到您可以将选择器组合在一起,这使您的代码更轻便。
另外,在使用 !important 时要小心(它会使以后的编码变得非常困惑)。在使用之前尝试添加特异性。
关于html - 媒体查询和文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39089075/
我是一名优秀的程序员,十分优秀!