截图以下:
编码以下;
<html>
<head>
<meta charset="UTF⑻">
<title>文字键入框 文本左移键入</title>
<style>
.one{
padding-left: 25px;
}
.two{
padding-left: 0px;
}
</style>
</head>
<body>
文字键入框 文本左移键入:
<input type="text" class="one" value='padding-left: 25px' />
<input type="text" class="two" value='padding-left: 0px' />
</body>
</html>