สำหรับ Bootstrap 3
เราแบ่งช่องว่างด้วยคอลัมน์เราใช้ 8 คอลัมน์เล็ก (col-xs-8) เราปล่อยให้คอลัมน์ที่ว่างเปล่า 4 คอลัมน์ (col-xs-offset-4) และเราใช้คุณสมบัติ (center-block)
<!--Footer-->
<div class="modal-footer">
<div class="col-xs-8 col-xs-offset-4 center-block">
<button type="submit" class="btn btn-primary">Enviar</button>
<button type="button" class="btn btn-danger" data-dismiss="modal">Cerrar</button>
</div>
</div>
สำหรับ Bootstrap 4
เราใช้การเว้นวรรค Bootstrap รวมถึงคลาสยูทิลิตี้การตอบสนองแบบย่อและแบบบุรองหลากหลายเพื่อปรับเปลี่ยนลักษณะที่ปรากฏขององค์ประกอบ คลาสถูกตั้งชื่อโดยใช้รูปแบบ {property} {side} - {size} สำหรับ xs และ {property} {ข้าง} - {เบรกพอยต์} - {size} สำหรับ sm, md, lg และ xl
ข้อมูลเพิ่มเติมได้ที่นี่: https://getbootstrap.com/docs/4.1/utilities/spacing/
<!--Footer-->
<div class="modal-footer">
<button type="submit" class="btn btn-primary ml-auto">Enviar</button>
<button type="button" class="btn btn-danger mr-auto" data-dismiss="modal">Cerrar</button>
</div>