Hey, I was wondering why this is happening:
http://jsfiddle.net/dSVGF/
Buttons do not fill the container, but the anchors do. What is fundamentally different between the two tags stylistically?
<div class="table"> <a href="#">A</a> <a href="#">B</a> <a href="#">C</a> </div> <div class="table"> <button href="#">A</button> <button href="#">B</button> <button href="#">C</button> </div> .table { display: table; width: 100%; outline: 1px solid red; } .table > * { display: table-cell; outline: 1px solid lightgreen; }
source share