横幅100%
ボタンの高さを50pxで設定しています。
css
a.btn-type-a {
background: #999;
color: #fff;
display: block;
font-size: 14px;
line-height: 20px;
padding: 15px 0;
text-align: center;
text-decoration: none;
}
右側に配置したい場合
width を追加し div で囲う。
html
<div class="fx-base fx-rev">
<a href="" class="btn-type-a">hoge</a>
</div>
css
a.btn-type-a {
background: #999;
color: #fff;
display: block;
font-size: 14px;
line-height: 20px;
padding: 15px 0;
text-align: center;
text-decoration: none;
width:200px;
}