Is this common CSS behavior?
How can we make the container wrap around the button?
http://jsfiddle.net/afrontrow/yepw7oLw/
CSS:
.button {
background: grey;
padding: 10px 20px;
}
.container {
border: 1px solid black;
}
HTML:
<div class="container">
<a class="button">Test</a>
</div>