Start of input writing [closed]

2

Normal input starts from the left, how can you start writing from the middle?

<input type="text">
    
asked by hubman 16.04.2018 в 04:51
source

1 answer

3

To achieve this, we must apply the text-align: center; property with CSS as follows

  

As notes I access the input from its id by means of the css rule and   I apply the aforementioned property

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <style>
    #saludo{
      text-align: center;
    }
  </style>
</head>
<body>
<input type="text" id="saludo">
</body>
</html>
    
answered by 16.04.2018 / 04:56
source