Answers for "box input css center page"

CSS
1

aligning form elements to center in css

body {
    text-align: center;
}
form {
    display: inline-block;
}
Posted by: Guest on July-23-2021
2

how to center a text input in css

input {
text-align: center;
}
Posted by: Guest on July-25-2021

Browse Popular Code Answers by Language