How to align text next to an icon with CSS?

前端 未结 2 1177
醉话见心
醉话见心 2021-01-12 22:03

I would like to draw an icon, with text next to it, examples below:

BAD example:

@ text text text text text text
text text text text text text
text t         


        
2条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-12 22:22

    Here's a way to do it with text, using absolute positioning.

    div {
      width: 100px;
      position: relative;
      padding-left: 1em;
    }
    
    div span {
      position: absolute;
      left: 0;
    }
    @text text text text text text text text text text text text text text text text text text text text text text text text text

提交回复
热议问题