I’m trying to horizontally center a table that is part of an Azure DevOps Wiki page. By centering I mean there should be the same amount of empty space on the left side of the table as on the right side. I tried is using the center
tag as shown below but that doesn’t work, i.e. the table is visible but still on the left side.
<center>
| My | Table |
|---------|---------|
| Value 1 | Value 2 |
</center>
I tried the same thing with an HTML table instead of the markdown one. However, that also does not work. Is it even possible to center a table?