css 图片和文字对齐 —— 垂直居中对齐,任意位置对齐

实现思路

使用 “子绝父相” 的css定位方法,将图片设置为绝对定位,通过 left 和 top 按需自由调整图片的位置

参考范例

 

        <div style="display:inline-block;position: relative;width:20px">
            <img style="position: absolute;top:-15px;left: 4px"
                 src="//img-tmdetail.alicdn.com/tps/i4/TB1GK2oGFXXXXX1XFXXwu0bFXXX.png_16x16.jpg" alt="">
        </div>
        UC浏览器

猜你喜欢

转载自blog.csdn.net/weixin_41192489/article/details/112467616