垂直对齐弹性项目
<div className="d-flex align-items-center">
<img
src={member.user_profile_image}
width="41"
height="41"
alt=""
className="img-radius me-1"
/>
<h4 className="color-main">{member.user_name}</h4>
</div>
正如您在图片上看到的,文本没有右对齐。有点高了。 我搜索了如何垂直居中 Flex 和 align-items-center
是解决方案,但不适合我。有人能告诉我如何垂直对齐图像和文本吗?
示例:
引导程序:5.1
<div className="d-flex align-items-center">
<img
src={member.user_profile_image}
width="41"
height="41"
alt=""
className="img-radius me-1"
/>
<h4 className="color-main">{member.user_name}</h4>
</div>
As you can see on the picture text is not aligned right. It is a little bit up.
I searched how to vertically center flex and align-items-center
was the solution, but not for me. Can someone tell me how can I align Image with Text vertically?
Example:
Bootstrap: 5.1
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将类设置为 html 元素不是通过“className”(<= JavaScript)完成的。
你必须使用: class=""
试试这个,一切都会好起来的。
Setting a class to a html element isnt done by "className" ( <= JavaScript).
You have to use: class=""
Try this and your all good.