我想有文字幕的图像。 图像是一带的;一是试图添加文字,就跳到网页开始。
.seasons{
display: flex;
}
.season-img{
width: 70%;
border-radius: 70px;
padding: 50px;
}
#season-left{
float: right;
}
#season-right{
float: left;
}
<div class="seasons">
<a href="" class="season-a">
<img src="friends-season1.webp" alt="season 1" class="season-img" id="season-left">
Season 1
</a>
<a href="" class="season-a">
<img src="friends-season2.webp" alt="season 2" class="season-img" id="season-right">
Season 2
</a>
</div>
I tried several things and none have worked