怎么改变jsp中表格的大小

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么改变jsp中表格的大小相关的知识,希望对你有一定的参考价值。

出现的问题,当简介中文字多时,会积压其它单元格的宽度,各单元格变形,很难看的。所以
问题:
(1)如何白色区域加上左右拉框,
原代码:
<html><head><title>管理中心</title><meta http-equiv=Content-Type content=text/html;charset=gb2312></head><frameset rows="64,*" frameborder="NO" border="0" framespacing="0"> <frame src="top.jsp" noresize="noresize" frameborder="NO" name="topFrame" scrolling="no" marginwidth="0" marginheight="0" target="main" /> <frameset cols="180,*" rows="560,*" id="frame"> <frame src="left.jsp" name="leftFrame" noresize="noresize" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" target="main" /> <frame src="right.jsp" name="main" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto" target="_self" /> </frameset><noframes> <body></body> </noframes></html>(2)怎么固定表格中单元格的大小,让它不随文字多少而改变各单元格的大小。
原代码如下:
<body> <table border="1" cellpadding="0" cellspacing="0"> <tr height="45"> <td width="60" align="center">序号</td>
。。。//其它的一样设计

<table border="1" style=" color:#CC3300">
<tr>
<td>hello word!</td>
</tr>
</table>
可以通过调整width或者height进行调整
参考技术A 每一个td 都需要设置width参数,而且参数值不能用百分比形式本回答被提问者采纳

jsp 怎么对表格里单列数据居中

参考技术A <html>
<body>
<table border="1">
<tr>
<td align="center" style="width:120px; height: 21px;" valign="middle">
1
</td>
<td align="center" style="width:120px; height: 21px;" valign="middle">
2
</td>
<td align="center" style="width:120px; height: 21px;" valign="middle">
10
</td>
</tr>
</table>
</body>
</html>

以上是关于怎么改变jsp中表格的大小的主要内容,如果未能解决你的问题,请参考以下文章

jsp 更改表格某行背景颜色。

html中表格设定的长和宽,为啥还会随着内容改变大小

DataGrid 用鼠标拖动改变列宽,怎么做

请问要怎么用css改变有序列表的序号大小?数字的那种,不是图片哦

jsp中怎么设置让一个表格在整个网页中居中

怎么样在Java中找到jsp中调用那个表格?