Reputation:
<html>
<body>
<div class="user_name floatleft fix">
<input placeholder="User name" type="text"/>
</div>
</body>
</html>
I want to give some margin at left of "User name" in input. Please help.
Upvotes: 0
Views: 2468
Reputation: 2803
Give padding to the input
Demo
input{
padding-left: 5px;
}
If you want to be more specific and not effect all inputs in your HTML. You can do this:
.user_name > input {
padding-left: 5px;
}
Upvotes: 2