html表格中如何让字体竖列? <html> <head> <title>HTML表格中竖排文字问题</title> <style type="text/css
发布网友
发布时间:2022-04-20 22:36
我来回答
共1个回答
热心网友
时间:2022-04-21 00:06
将class 放到<td>中,去掉<div>和</div>即可
<html>
<head>
<title>HTML表格中竖排文字问题</title>
<style type="text/css">
<!--.tnt {Writing-mode:tb-rl;Text-align:left;font-size:20pt}-->
</style>
</head>
<body>
<table border="1" width="300" height="600" style="color:red">
<tr height="300">
<td>
<div class="tnt"> 我爱中国</div>
</td>
</tr>
<tr>
<td class="tnt">
我爱中国
</td>
</tr>
</table>
</body>
</html>