横向 html 图文推荐
时间: 2023-12-02 11:42:11 浏览: 103
基于图的推荐
以下是一个横向HTML图文推荐的例子:
```html
<div class="recommendation">
<h2>相关推荐</h2>
<ul>
<li>
<a href="#">
<img src="image1.jpg" alt="image1">
<p>图片1描述</p>
</a>
</li>
<li>
<a href="#">
<img src="image2.jpg" alt="image2">
<p>图片2描述</p>
</a>
</li>
<li>
<a href="#">
<img src="image3.jpg" alt="image3">
<p>图片3描述</p>
</a>
</li>
</ul>
</div>
```
CSS样式:
```css
.recommendation {
text-align: center;
}
.recommendation h2 {
font-size: 24px;
margin-bottom: 20px;
}
.recommendation ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
}
.recommendation li {
margin-right: 30px;
}
.recommendation li:last-child {
margin-right: 0;
}
.recommendation a {
text-decoration: none;
}
.recommendation img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 50%;
transition: transform 0.3s ease-in-out;
}
.recommendation img:hover {
transform: scale(1.1);
}
```
阅读全文