图片随文字浮动
1.文字字数不固定,图片宽度固定(水平居中,垂直居中时)
// An highlighted block
<div class="address">
<p style="color: #5B8ED2;">文本浮动</p>
<img class="mypic" src="img/bg01.jpg"></img>
</div>
<style type="text/css">
.address {
text-align: center;
display: flex;
align-items: center;
justify-content: center;
margin-left: 18px;
}
.mypic {
width: 16px;
height: 16px;
margin-left: 5px;
}
</style>
效果图
解释
思路就是把文本跟图标放在同一个盒子,让盒子垂直居中,然后整体左移一段距离,这段距离就是图片宽度+文本和图片的间距;