How would this be done?
When the mouse is dragged it doesn’t occur with the links at the top.
The highlight color.
Update:
This worked for me:
container {
margin-top: 30px;
overflow: hidden;
}
.container-left {
float: left;
margin: 0;
}
.container-right {
float: left;
}
input[type=submit] {
margin-left: 4px;
}
<div class="container ">
<div class="container-left">
<input id="input" type="text" name="someNameHere" placeholder="someValueHere" />
</div>
<div class="container-right">
<input id="sent" type="submit" value="Set" />
</div>
</div>