How to have images in line with text in css

前端 未结 6 1599
时光说笑
时光说笑 2021-01-02 03:06

I\'m creating the footer of my website using html and css.

I want to have the two facebook and twitter images in line with the text so that everything in the footer

6条回答
  •  臣服心动
    2021-01-02 03:46

    Check out this working example here.

    .channels li {
        float: left;
        margin-left: 0.625em;
    }
    

提交回复
热议问题