Reputation: 463
I am into designing my page and I've got troubled aligning the header. As you can see here:
I wanted the "Add" will align with the employee list. How would I do that?
By the way here's the html code: I've used bootstrap. But a native css suggestion is still good.
<div class="title">
<h4>Employee list</h4>
<span class="pull-right">Add</span>
</div>
Thanks
Upvotes: 4
Views: 1795
Reputation: 862
give h4 width auto and float left
CSS
h4
{
float:left;width:auto
}
and span float right width auto
.pull-right
{
float:right;width:auto
}
Upvotes: 0