Right align element in div class

前端 未结 3 1752
逝去的感伤
逝去的感伤 2020-12-18 20:16

I am using angular 2 with Bootstrap 4 and Angular Material. However, I am having trouble right align the elements inside my container div. I want both my button and text to

3条回答
  •  醉酒成梦
    2020-12-18 21:03

    You are not doing anything wrong. Just copy and paste your code in any online bootstrap editor, you will get the right result. But you can write it in a more structured way

    HTML code:

            

    Some text

    CSS code

    .asdf {
      margin-left:auto; 
      margin-right:0;
    }
    

提交回复
热议问题