如何设置占位符值的样式,比如如果我想在该值的左侧留出边距,在 css 中写什么?
How to style the value of a placeholder like if I want to give a margin at left of that value, what to write in css?
<html>
<body>
<div class="user_name floatleft fix">
<input placeholder="User name" type="text"/>
</div>
</body>
</html>
我想在输入的 "User name" 左边留一些边距。请帮忙
给 input
Demo
填充
input{
padding-left: 5px;
}
如果您想要更具体并且不影响 HTML 中的所有输入。你可以这样做:
.user_name > input {
padding-left: 5px;
}
<html>
<body>
<div class="user_name floatleft fix">
<input placeholder="User name" type="text"/>
</div>
</body>
</html>
我想在输入的 "User name" 左边留一些边距。请帮忙
给 input
Demo
input{
padding-left: 5px;
}
如果您想要更具体并且不影响 HTML 中的所有输入。你可以这样做:
.user_name > input {
padding-left: 5px;
}