Normal input starts from the left, how can you start writing from the middle?
<input type="text">
Normal input starts from the left, how can you start writing from the middle?
<input type="text">
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>