我正在尝试为 Justin Tadlock 为移动设备设计 Grid Columns 插件的样式。来源:https ://github.com/justintadlock/grid-columns
在我的css文件中,我想将.column-grid .column width
移动设备设置为完整,并重置宽度min-width: 768px
.column-grid .column {
float: left;
margin-right: 5%;
margin-left: 0;
}
@media only screen and (min-width: 768px) {
.column-grid .column {
}
}
我试过width: 100%
vswidth: auto
和display: block
vs display: inline
。然而,它并没有成功。
请注意,实际的列宽是在.column-grid .column
包装器中设置的。
关于如何巧妙地做到这一点的任何建议?