Programming Tips - Bootstrap: How to align cells right in a Bootstrap table

Date: 2018sep7 Update: 2025oct20 Library: Bootstrap Q. Bootstrap: How to align cells right in a Bootstrap table A. In Bootstrap 4 use class=text-xs-right Bootstrap 4
<table class='table'> ... <td class='text-xs-right'>I am right</td>
Bootstrap 3
<table class='table'> ... <td class='text-right'>I am right</td>