html图片右侧布局,DIVCSS5模块 左图片右标题简介div css布局模块
时间: 2023-08-11 19:07:46 浏览: 100
您可以使用以下HTML和CSS代码实现图片右侧布局,DIVCSS5模块左图片右标题简介div css布局模块:
HTML代码:
```html
<div class="container">
<img src="example.jpg" alt="Example Image">
<div class="content">
<h2>标题</h2>
<p>简介</p>
</div>
</div>
```
CSS代码:
```css
.container {
display: flex;
align-items: center;
justify-content: center;
}
img {
width: 50%;
height: auto;
margin-right: 20px;
}
.content {
width: 50%;
}
h2 {
font-size: 24px;
margin-bottom: 10px;
}
p {
font-size: 16px;
line-height: 1.5;
}
```
在上面的代码中,我们使用了flexbox布局来使图片和内容垂直居中对齐,并使它们在容器内水平居中对齐。我们还设置了图片和内容的宽度为50%,并使用margin-right属性添加了20像素的空白间隔。最后,我们设置了标题和简介段落的字体样式和行高。
阅读全文