在这个日历中,在日期6之后,我添加了一个新的
- 以包含“即将到来的事件”图像,该图像应具有2列高度。理想情况下,日期8应该移到6以下,9应该移到7以下,以填补空间,但它没有这样做。
感谢您的任何帮助和建议!
.event_calendar ul {
padding: 0 20px;
display: flex;
list-style: none;
flex-wrap: wrap;
color: #000000;
text-align: center;
}
.event_calendar .days {
margin-bottom: 20px;
justify-content: space-between;
}
.event_calendar li {
display: flex;
color: #333;
width: calc(100% / 5);
}
.event_calendar .days li {
z-index: 1;
width: 100px;
height: 100px;
cursor: pointer;
position: relative;
margin-top: 5px;
justify-content: center;
font-size: 30px;
font-weight: 600;
color: #fff;
}
.days li::before {
position: absolute;
content: "";
height: 100px;
width: 100px;
z-index: -1;
border-radius: 5px;
transform: translate(0%, -30%);
}
.days li.event_date::before {
position: absolute;
content: "";
background: #f2f2f2;
background-image: url('https://st2.depositphotos.com/1635204/7654/i/450/depositphotos_76549817-stock-photo-word-events-on-colorful-wooden.jpg');
background-size: cover;
height: 100px;
width: 100px;
z-index: -1;
border-radius: 5px;
transform: translate(0%, -30%);
}
.days li.upcoming_event_preview {
z-index: 1;
cursor: pointer;
position: relative;
justify-content: center;
margin-top: 5px;
width: 300px;
height: 250px;
font-size: 30px;
font-weight: 600;
color: #fff;
}
.days li.upcoming_event_preview::before {
position: absolute;
content: "";
background-image: url('https://clipart-library.com/img1/1038152.png');
background-size: contain;
margin: 5px;
width: 300px;
height: 250px;
z-index: -1;
border-radius: 5px;
transform: translate(0%, -10%);
}
<div class="event_calendar">
<ul class="days">
<li class="event_date"> 1 </li>
<li class="event_date"> 2 </li>
<li class="event_date"> 3 </li>
<li class="event_date"> 4 </li>
<li class="event_date"> 5 </li>
<li class="event_date"> 6 </li>
<li class="upcoming_event_preview"></li>
<li class="event_date"> 7 </li>
<li class="event_date"> 8 </li>
<li class="event_date"> 9 </li>
<li class="event_date"> 10 </li>
<li class="event_date"> 11</li>
<li class="event_date"> 12 </li>
</ul>
</div>
我试过玩FlexBox,但到目前为止没有任何工作。(我不想通过做flex: 1
使任何日期拉伸和填充)
1条答案
按热度按时间ftf50wuq1#
因为
flexbox
不能得到这里的结果,所以这里有一个使用display: grid
的例子;我评论了CSS。
注意:我确实使用了原始问题中设置的列的原始特定
px
值,例如100 px。我建议将这些更改为百分比值或其他可以响应浏览器大小变化的值。响应式