@ Atom999 Я изменил ваш элемент <span>
в гибкий контейнер и сделал элементы встроенными в центр с помощью переключателя. Надеюсь, это поможет!
html, body {
margin: 0;
padding: 0;
min-height: 100%;
}
span {
display: flex;
flex-direction: row;
justify-content: center;
font-size: 8pt;
display: inline;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<table>
<td>
<td> Choose >>> </td>
<td>
<input name="vid" type="radio" id="foo" checked>
<span>
this text is too low, I want it centered with the radio button
</span>
</td>
</table>
</body>
</html>