在居中的图片左右边放置图片,及下面放数字
时间: 2024-10-08 07:26:14 浏览: 27
html图片居中图片列表左右切换可放大展示特效
要在页面上创建一个包含图片、图片和数字的布局,你可以使用HTML和CSS来实现这种对齐效果。例如,你可以使用`float`、`display: inline-block`或是`flexbox`或`grid`布局。这里是一个简单的例子:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<style>
.container {
width: 100%; /* 根据需要调整宽度 */
text-align: center;
}
.item {
display: inline-block;
vertical-align: top;
margin-right: 10px; /* 用于图片之间的间隔 */
}
.left-image {
float: left;
width: 30%; /* 图片占总宽度的30% */
}
.right-image {
float: right;
width: 30%; /* 另一边图片同样占30% */
}
.number {
clear: both;
margin-top: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="left-image">
<img src="左边图片链接" alt="左边图片描述">
</div>
<div class="right-image">
<img src="右边图片链接" alt="右边图片描述">
</div>
<div class="number">
<p>下面的数字: 123</p>
</div>
</div>
</body>
</html>
```
在这个示例中,`.left-image`和`.right-image`设置了浮动,它们会并排显示在文本的两侧。`.number`类清除了浮动,保证数字在图片下方。记得替换`src`属性为你实际的图片URL。
阅读全文