How may I align text to the left and text to the right in the same line?

后端 未结 9 1006
醉梦人生
醉梦人生 2020-12-12 12:37

How can I align text so that some of it aligns to the left and some of it aligns to the right within the same line?

This text should be left-aligned

9条回答
  •  独厮守ぢ
    2020-12-12 13:25

    Add span on each or group of words you want to align left or right. then add id or class on the span such as:

    Left Text Right Text

    CSS-

    #makeLeft{
    float: left;
    }
    
    #makeRight{
    float: right;
    }
    

提交回复
热议问题