HTMLはこんな感じ
1 2 3 4 |
<div id="footerContact"> <a href="#aaa" class="btn-left">メール</a> <a href="tel:0123-456-789 class="btn-right">電話</a> </div> |
CSSはこんな感じ
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
#footerContact { align-items: center; box-sizing: border-box; border-top: 1px solid #ccc; bottom: 0; background: #fff; display: flex; justify-content: space-around; position: fixed; width: 100%; z-index: 99; } .btn-left{ background-color: #3B5998; border-right:1px solid #ccc; display: block; padding: 15px 0; text-align: center; width:50%; } .btn-right{ background-color: #389F57; border-leftt:1px solid #ccc; display: block; padding: 15px 0; text-align: center; width:50%; } |