I need to horizontally align text inside a specific table cell, but the HTML code is from a third-party source. I am only able to modify the style of the span element.
.Change {
text-align: center;
}
<table>
<tr>
<td>Some random text</td>
<td>Some random text</td>
</tr>
<tr>
<td><span class="Change">Center me</span></td>
<td>Some random text</td>
</tr>
</table>