Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Input type doesn't center

Tags:

html

css

web

I was practising some code and then this happened, The input text tag won't center. Margin: 0 auto; also doesn't seem to work either.

Here's the code I was working on.

HTML:

<input type="text" placeholder="Email">

CSS:

input {
outline: none;
border-radius: 5px;
border-style: none;
height: 45px;
width: 218px;
padding:0 16px;
font-family: Helvetica Neue;  
font-size: 18px;
background-color: rgb(250,250,250);
margin:0 auto;
}

Can anyone help me out with this? and also a possible explanation?

like image 288
Gowri Sankar Avatar asked Sep 08 '26 09:09

Gowri Sankar


1 Answers

use this code:

input {
text-align:center;
}

click here for demo

like image 150
Prajwal Shrestha Avatar answered Sep 11 '26 08:09

Prajwal Shrestha



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!