Post History
Testing making a table through the user interface using HTML rather than Markdown, so the alignment classes can be added. Centered Right aligned centered right aligned Longer t...
Answer
#2: Post edited
- Testing making a table through the user interface using HTML rather than Markdown, so the alignment classes can be added.
- <table>
- <thead>
- <tr>
- <th class="has-text-align-center">Centered</th>
- <th class="has-text-align-right">Right aligned</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td class="has-text-align-center">centered</td>
- <td class="has-text-align-right">right aligned</td>
- </tr><tr>
<td class="has-text-align-center">Longer text to make alignement apparent</td><td class="has-text-align-right">Longer text to make alignement apparent</td>- </tr>
- </tbody>
- </table>
- Testing making a table through the user interface using HTML rather than Markdown, so the alignment classes can be added.
- <table>
- <thead>
- <tr>
- <th class="has-text-align-center">Centered</th>
- <th class="has-text-align-right">Right aligned</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td class="has-text-align-center">centered</td>
- <td class="has-text-align-right">right aligned</td>
- </tr><tr>
- <td class="has-text-align-center">Longer text to make alignment apparent</td>
- <td class="has-text-align-right">Longer text to make alignment apparent</td>
- </tr>
- </tbody>
- </table>
#1: Initial revision
Testing making a table through the user interface using HTML rather than Markdown, so the alignment classes can be added. <table> <thead> <tr> <th class="has-text-align-center">Centered</th> <th class="has-text-align-right">Right aligned</th> </tr> </thead> <tbody> <tr> <td class="has-text-align-center">centered</td> <td class="has-text-align-right">right aligned</td> </tr><tr> <td class="has-text-align-center">Longer text to make alignement apparent</td> <td class="has-text-align-right">Longer text to make alignement apparent</td> </tr> </tbody> </table>