HTML Form How to - Align text center for input field








Question

We would like to know how to align text center for input field.

Answer


<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
input {<!--  w w  w  . j a  va 2 s.  co m-->
  text-align: center;
}
</style>
</head>
<body>
  <input type="text" placeholder="hello world">
</body>
</html>

The code above is rendered as follows: