<a href="href" class="my-a-class> <img alt="alt" src="/path/to/image.jpg" class="my-img-class" /> My text </a>
我需要垂直对齐“我的文字”而不影响锚点中的图像.我无法添加任何HTML标记,我只需要使用CSS.有什么建议吗?
编辑—
这些天使用flexBox要好得多:
.my-a-class { display: flex; align-items: center; justify-content: space-between; }