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

后端 未结 9 1025
醉梦人生
醉梦人生 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:28

    HTML FILE:

    Left Aligned
    Right Aligned

    CSS FILE:

    .left
    {
      float: left;
    }
    
    .right
    {
      float: right;
    }
    

    and you are done ....

提交回复
热议问题