寂寞的红薯 · HTML翻牌器:用CSS和HTML元素创造动 ...· 2 周前 · |
气势凌人的跑步鞋 · css实现数字动态切换效果_数字跳转csss ...· 2 周前 · |
俊秀的熊猫 · 居中一个元素 - CSS:层叠样式表 | MDN· 1 周前 · |
讲道义的鞭炮 · 使用chrome console检查css ...· 1 周前 · |
帅呆的匕首 · ABC | Last ...· 1 月前 · |
豪爽的香烟 · 【2019款进口沃尔沃XC90】进口进口沃尔 ...· 1 年前 · |
宽容的山楂 · 综合得分率95.7%,宝马iX3获“C-NC ...· 1 年前 · |
霸气的小熊猫 · 吴京《巨齿鲨2》首映,北美口碑不佳,是更适合 ...· 1 年前 · |
宽容的莲藕 · 甲基丙烯酸化水凝胶(GelMA) - 知乎· 1 年前 · |
<style>
.container {
width: 100%;
display: grid;
/*grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));*/
/*以防万一,子项不足占据一行时*/
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
grid-template-rows: 250px;
grid-auto-flow: row;
grid-auto-rows: 250px;
gap: 10px;
.container .item:nth-child(even) {
background-color: skyblue;
.container .item:nth-child(odd) {
background-color: pink;
</style>
<div class="container">
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
<div class="item"></div>
</body>
原文链接: https://www.arryblog.com/guide/css3/defensive-css.html