how to vertically align text next to a floated image?

前端 未结 6 1914
谎友^
谎友^ 2020-12-31 02:09

I want to vertically align a span after a floated image. I searched for it in stack overflow and find this post. but my image is floated.

<
6条回答
  •  遥遥无期
    2020-12-31 03:05

    You could do the following:

      div:after {
            content:"";
            clear:both;
            display:block;
        }
    

提交回复
热议问题