在没有Javascript的HTML中使用变量

时间:2014-02-25 00:37:14

标签: html

我有这个HTML代码:

<body>
<table width="650">
<tr width="650">
<td width="650">
lots of text here
</td>
</tr>
</table>
</body>

如何使用变量/常量来表示650?我需要使用javascript还是什么?

我真正想要的是一种重用某些代码的方法,这样我只需要在一个地方更改宽度值。

的Nb。我没有使用数据库或任何东西。只是一个简单的html页面,所以我想做类似的事情: int x = 650

2 个答案:

答案 0 :(得分:4)

使用css:

table,tr,td{width:650px;}

答案 1 :(得分:1)

CSS

table, tr, td {
    width: 650px;
}

HTML

<body>
<table>
    <tr>
        <td>
            lots of text here
        </td>
    </tr>
</table>
</body>