How to position a form to the right of the screen?

Asked

Viewed 30 times

-3

  • display: flex; Justify-conent: flex-end; or float: right;

  • Add the code to the question

1 answer

0


With float: right;

.direita{
    border: 1px solid black;
    width: 50%;
    float: right;
}
<form class="direita">
    Nome: <input type="text"/>
</form>

  • Thank you very much!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.