到目前为止,我有这个JsFiddle - 使用媒体查询的 DIV 排列随着区域宽度的减小而变化,并保持适合 100% 容器宽度的布局。
我遇到的问题是试图分开,DIV
因为布局是基于百分比的。
到目前为止,我为包含边距所做的努力未能使所有内容保持完美格式。
在这里的任何帮助将不胜感激。
这是CSS...
#photos {
/* Prevent vertical gaps */
line-height: 0;
width: 100%;
}
#photos img {
/* Just in case there are inline attributes */
width: 20%;
height: auto;
float:left;
overflow:hidden;
}
@media (max-width: 1200px) {
#photos img {
/* Just in case there are inline attributes */
width: 20%;
}
}
@media (max-width: 800px) {
#photos img {
/* Just in case there are inline attributes */
width: 25%;
}
}
@media (max-width: 400px) {
#photos img {
/* Just in case there are inline attributes */
width: 50%;
}
}
@media (max-width: 300px) {
#photos img {
/* Just in case there are inline attributes */
width: 100%;
}
}