Align two elements on the same line

前端 未结 3 874
终归单人心
终归单人心 2021-01-29 02:57

I am trying to align two different

elements on the same line. I got it to work but it completely messed up my logo. The two

element

3条回答
  •  暖寄归人
    2021-01-29 03:28

    Your

    are:

    test

    test

    Use this:

    #countr, #countl {
     display: inline-block;
    }
    

    If doesn't work, then you can use this for countr

    #countr {
    float: left;
    }
    

    This will make them float inline!

提交回复
热议问题