Using CSS would I be able to move the line in the tags to the bottom of the word instead of the top of the word?
<!DOCTYPE html>
<html>
<head>
<style>
rt {
line-height: Normal;
font-size: .4em;
text-align: center;
}
</style>
</head>
<body>
<ruby>
中文 <rt>Zhōngwén</rt>
</ruby>
</body>
</html>