- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 CSS,其设计目的是在中等尺寸下调整到一定数量的列,然后在小尺寸/移动尺寸下调整为全 Angular 元素。一切似乎都有效,除了在中型/平板电脑尺寸下,外部容器上的 margin-top(例如)和 .columnContainer 类显然被丢弃了。
我已经尝试了所有我能想到的方法来解决这个问题,但还是碰壁了。在此先感谢您的帮助,您可以在此处使用 CSS:https://jsfiddle.net/xvLmhfpa/
// This is getting stripped at medium size only!
.columnContainer { margin-top: 20px }
// Large size
@media all and ( min-width: 768px ) {
.columnContainer {
display: table;
width: 100%;
}
.columnContainer > div {
display: table-cell;
}
}
// Medium/tablet size
@media all and ( max-width: 767px ) and ( min-width: 481px ) {
.columnContainer {
width: 100%;
}
.columnContainer > div {
float: left;
width: 100%;
}
.columnContainer.collapse2 > div { width: 50%; }
.columnContainer.collapse2 div:nth-child(2n+1) { clear: both; }
.columnContainer.collapse3 > div { width: 33.33%; }
.columnContainer.collapse3 div:nth-child(3n+1) { clear: both; }
.columnContainer.collapse4 > div { width: 25%; }
.columnContainer.collapse4 div:nth-child(4n+1) { clear: both; }
.columnContainer.collapse5 > div { width: 20%; }
.columnContainer.collapse5 div:nth-child(5n+1) { clear: both; }
.columnContainer.collapse6 > div { width: 20%; }
.columnContainer.collapse6 div:nth-child(5n+1) { clear: both; }
}
// Small/mobile size
@media all and ( max-width: 480px ) {
.columnContainer > div { width: 100% }
}
最佳答案
这是因为你的中等大小有 float:left
..在 div.. 中添加 display:inline-block
@media all and ( max-width: 767px ) and ( min-width: 481px ) {
.columnContainer {
width: 100%;
display:inline-block;
}
.columnContainer > div {
float:left;
width: 100%;
}
这是更新的 fiddle ..
关于css - 响应 CSS 容器仅在平板电脑尺寸下损失边际,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46191766/
我的应用程序中有两个 Activity 。第一个 Activity 启动模式是 singleInstance,第二个 Activity 启动模式是 singleTask。我正在使用这些启动模式,因为我
据热心网友投稿,小米小爱触屏音箱Pro 8外观曝光,可以看到触控屏幕尺寸比较大,像是在音箱上“长”了一个平板。 从曝光的信息来看,小米小爱触屏音箱Pro 8具有白色的配色设计,下方有一个长
我有一张 table ,看起来像, VisitorId date deviceType 1 2018-12-11 mobile 2
今天下午,小米官方公布了小爱触屏音箱Pro 8,可以看到触控屏幕尺寸比较大,音箱上“长”了一个平板。据悉,小米小爱触屏音箱Pro 8具有白色的配色设计,下方有一个长条状的扬声器,上方带有一个尺寸比较
有没有办法检测是否使用手持浏览器(iOS/Android 手机/平板电脑)? 我尝试这样做的目的是让手持设备上的浏览器中的元素宽度减半,但这并没有什么不同。 width: 600px; @media
目前,Google Analytics for web 公开了一个设备类别字段,其离散值为mobile、tablet 和desktop。该界面还允许您更深入地了解它的具体设备。我想 Google 有某
我是一名优秀的程序员,十分优秀!