私は2つのdivカラムと各カラムの内側にボタンを持っています。各ボタンを各列の中央下部に揃えたいこれまでのところ、私は中心部または底部でそれを得ることができますが、両方ではできません。コンテナの中央下部にボタンを合わせる
.rr_centerbottom1 {
display: block;
margin-left: 5%;
margin-right: 5%;
position: absolute;
bottom: 5px;
}
.header {
position: relative;
min-height: 180px;
}
<div class="pure-g header">
<div class="pure-u-12-24">
<!-- colomn 1 -->
<a href="test.html" class="pure-button rr_centerbottom1" type='button'> Info</a>
</div>
<div class="pure-u-12-24">
<!-- colomn 1 -->
<a href="test2.html" class="pure-button rr_centerbottom1" type='button'>Boek nu</a>
</div>
</div>
こんにちは、あなたの答えをありがとう、私はこれを試してみましたが、私はそれが仕事を得ることができません。あなたのjsFiddleの例は私が欲しいと思っていますが、私はこの仕事を私と一緒にする必要があります。他にも問題があります。 – Richard