Programming Tips - Bootstrap: How do I align cells right in a Bootstrap table?

Date: 2018sep7 Library: Bootstrap Q. Bootstrap: How do I align cells right in a Bootstrap table? A. Bootstrap 3
<table class='table'> ... <td class='text-right'>I am right</td>
Bootstrap 4
<table class='table'> ... <td class='text-xs-right'>I am right</td>