让input元素输入的文字距离左边框一定距离 (css属性:text-indent)
让input元素输入的文字距离左边框一定距离 (css属性:text-indent)
input 字体输入间距 css
想让input元素输入的文字距离左边框一定距离,可以使用CSS中的text-indent属性,对文本内容进行缩进。
text-indent 属性能定义一个块元素首行文本内容之前的缩进量。
<input type="text" placeholder="首行缩进"/>
input{text-indent:2rem;}//首行缩进
input{text-indent:10%;}//百分比取决于其包含块(containing block)的宽度
input{text-indent:5px;}