
批改狀態(tài):合格
老師批語:還行!課程標(biāo)題和課程級(jí)別可以加點(diǎn)間距!效果更好!
其它復(fù)制就好了
<div class="course-list">
<h3 class="course-title">php入門精品課程</h3>
<div class="container">
<div class="course-item first">
<a href=""
><img
src="images/index_learn_first.jpg"
alt="php中文網(wǎng)入門初級(jí)教程"
/></a>
</div>
<div class="course-item">
<a href=""
><img src="images/1.png" alt="編程學(xué)習(xí)方法分享直播公益課"
/></a>
<div class="desc">
<a href=""><span>初級(jí)</span>編程學(xué)習(xí)方法分享直播公益課</a>
<span>11W+播放</span>
</div>
</div>
/* 初始化 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
font-size: 14px;
color: #666;
}
/* 容器 */
.course-list {
width: 1200px;
height: 646px;
display: grid;
margin: auto;
}
/* 標(biāo)題 */
.course-list > .course-title {
text-align: center;
color: #4d555d;
font-size: 20px;
padding: 20px 0 0 0;
}
/* 列表 */
.course-list > .container {
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-template-rows: repeat(3, 1fr);
}
.course-list > .container > .course-item {
width: 217px;
height: 166px;
/* background-color: slateblue; */
border-radius: 5px;
box-shadow: 0 0 10px #888;
place-self: start center;
}
/* 第一個(gè)列表 */
.course-list > .container > .course-item.first {
width: 217px;
height: 362px;
grid-row: span 2;
}
/* 圖片大小 */
.course-list > .container > .course-item img {
width: 100%;
border-radius: 5px;
}
/* 課程描述 */
.course-list > .container > .course-item .desc {
display: grid;
place-content: space between;
min-height: 84px;
border-radius: 5px;
background-color: white;
padding: 10px;
position: relative;
top: -42px;
}
/* 播放 */
.course-list > .container > .course-item .desc span {
color: #93999f;
font-size: 12px;
}
/* 初級(jí) */
.course-list > .container > .course-item .desc a span {
background-color: #93999f;
color: white;
font-size: 12px;
padding: 2px;
border-radius: 1px;
}
/* 有向上動(dòng)的行為 */
.course-list > .container > .course-item .desc:hover {
min-height: 130px;
cursor: pointer;
position: relative;
top: -90px;
transition: 0.5s;
}
微信掃碼
關(guān)注PHP中文網(wǎng)服務(wù)號(hào)
QQ掃碼
加入技術(shù)交流群
Copyright 2014-2025 http://ipnx.cn/ All Rights Reserved | php.cn | 湘ICP備2023035733號(hào)