欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

漂亮的css欄目源代碼

江奕云2年前9瀏覽0評論

作為現在的網站設計中重要的一部分,CSS欄目的美觀程度直接影響著網站的用戶體驗,下面是一些漂亮的CSS欄目源代碼。

/* 方形圖標欄目 */
.square-icon {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 6px 15px rgb(0 0 0 / 10%);
}
.square-icon li {
display: flex;
flex-direction: column;
align-items: center;
font-size: 14px;
color: #333;
text-align: center;
}
.square-icon li img {
margin-bottom: 10px;
}
/* 輪播圖欄目 */
.carousel {
display: flex;
overflow: hidden;
height: 240px;
position: relative;
}
.carousel .slide {
display: flex;
flex: 0 0 100%;
transition: transform 1s;
}
.carousel .slide img {
width: 100%;
height: 100%;
object-fit: cover;
}
.carousel-pagination {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
display: flex;
justify-content: center;
align-items: center;
}
.carousel-pagination span {
display: block;
width: 8px;
height: 8px;
background-color: #999;
border-radius: 50%;
margin-right: 10px;
transition: background-color 1s;
}
.carousel-pagination span.active {
background-color: #fff;
}
/* 豎直列表欄目 */
.vertical-list {
display: flex;
flex-direction: column;
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 6px 15px rgb(0 0 0 / 10%);
}
.vertical-list li {
display: flex;
align-items: center;
margin-bottom: 20px;
}
.vertical-list li img {
width: 60px;
height: 60px;
object-fit: cover;
border-radius: 50%;
margin-right: 20px;
}
.vertical-list li p {
font-size: 14px;
color: #333;
}

以上三種CSS欄目都有其獨特的特點,適用于不同的場景,通過靈活運用可以讓網站更加美觀、實用。