设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 33|回复: 5
打印 上一主题 下一主题

求助,10分钟回复,关于TD的一个属性

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-7 05:25:53 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
各位大侠我现在遇到一个问题就是从数据库里读数据的时候数据不自动换行一直读把表格都搞的老宽,我以前用过一个关于TD的一个属性,现在不太清楚了,各位大侠帮个忙.有没有知道的,或其它的解决办法?

sub ArticleContent(intTitleLen)
dim i,lb,strli
Response.Write "<table width=100% border=0 cellspacing=2 cellpadding=0>"
i=1
do while not rsArticle.eof
Response.Write "<TR align=""center"">"
strli=""

lb=""
lb=lb & "<TD align='left'><a href='En_ProductShow.asp?ArticleID=" & rsArticle("articleid") & "' title='" & strli &"'><img border=0 src='"& rsArticle("DefaultPicUrl") &"' width=100 height=100></a></TD>"
lb=lb & "<td width='16%'><a href='En_ProductShow.asp?ArticleID="& rsArticle("articleid") &"' target='_blank'>See</a><br><a href='javascript:eshop("& rsArticle("Product_Id") &")'>Order</a><br><div style='width:90%; height:20px; background-image:url(../img/tablebg1.gif)'>"& gotTopic(rsArticle("EnTitle"),16) &"</div></td>"
lb=lb & "<td width='71%'><a href='En_ProductShow.asp?ArticleID="& rsArticle("articleid") &"'>"& gotTopic(rsArticle("EnSpec"),100) &"</a></td>" '//要求数据自动换行的地方

lb=lb & "</TR>"

lb=lb & "<TR align=""center"">"

lb=lb & "<TD colspan='3' align='left'><hr color=#CCCCCC></TD>"

lb=lb & "</TR>"
response.write lb
rsArticle.movenext
i=i+1
if i>=MaxPerPage then exit do
loop
Response.Write "</Table>"
end sub
2#
发表于 2010-1-7 05:25:56 | 只看该作者
谢谢了各位大侠
回复 支持 反对

使用道具 举报

3#
发表于 2010-1-7 05:25:59 | 只看该作者
style="word-break:break-all;"

用他试试

不过汉字应该都可以自动换行的
回复 支持 反对

使用道具 举报

4#
发表于 2010-1-7 05:26:02 | 只看该作者
下面的是本人收藏的,你自己找一个适合你用的吧.

css之自动换行
1)对于div,p等块级元素
正常文字的换行(亚洲文字和非亚洲文字)元素拥有默认的white-space:normal,当定义的宽度之后自动换行
html
<div id="wrap">正常文字的换行(亚洲文字和非亚洲文字)元素拥有默认的white-space:normal,当定义</div>
css
<style>
#wrap{white-space:normal; width:200px; }
</style>

2).(IE浏览器)连续的英文字符和阿拉伯数字,使用word-wrap : break-word ;或者word-break:break-all;实现强制断行
<style>
#wrap{word-break:break-all; width:200px;}
</style>
或者
<style>
#wrap{word-wrap:break-word; width:200px;}
</style>
<div id="wrap">abcdefghijklmnabcdefghijklmnabcdefghijklmn111111111</div>
效果:可以实现换行

3).(Firefox浏览器)连续的英文字符和阿拉伯数字的断行,Firefox的所有版本的没有解决这个问题,我们只有让超出边界的字符隐藏或者,给容器添加滚动条
<style>
#wrap{word-break:break-all; width:200px; overflow:auto;}
</style>
<div id="wrap">abcdefghijklmnabcdefghijklmnabcdefghijklmn111111111</div>
效果:容器正常,内容隐藏

4)(IE浏览器)使用 table-layout:fixed;强制table的宽度,多余内容隐藏
<table style="table-layout:fixed" width="200">
<tr>
<td>abcdefghigklmnopqrstuvwxyz1234567890ssssssssssssss
</td>
</tr>
</table>
效果:隐藏多余内容

5).(IE浏览器)使用 table-layout:fixed;强制table的宽度,内层td,th采用word-break : break-all;或者word-wrap : break-word ;换行
<table width="200" style="table-layout:fixed;">
<tr>
<td width="25%" style="word-break : break-all; ">abcdefghigklmnopqrstuvwxyz 1234567890
</td>
<td style="word-wrap : break-word ;">abcdefghigklmnopqrstuvwxyz 1234567890
</td>
</tr>
</table>
效果:可以换行

6).(Firefox浏览器)使用 table-layout:fixed;强制table的宽度,内层td,th采用word-break : break-all;或者word-wrap : break-word ;换行,使用overflow:hidden;隐藏超出内容,这里overflow:auto;无法起作用
<table style="table-layout:fixed" width="200">
<tr>
<td width="25%" style="word-break : break-all; overflow:hidden; ">abcdefghigklmnopqrstuvwxyz1234567890</td>
<td width="75%" style="word-wrap : break-word; overflow:hidden; ">abcdefghigklmnopqrstuvwxyz1234567890</td>
</tr>
</table>
效果:隐藏多于内容

下面是上面提到的例子的效果:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>字符换行</title>
<style type="text/css">
table,td,th,div { border:1px green solid;}
code { font-family:"Courier New", Courier, monospace;}
</style>
</head>
<body>
<h1><code>div</code></h1>
<h1><code>All white-space:normal;</code></h1>
<div style="white-space:normal; width:200px;">Wordwrap still occurs in a td element that has its WIDTH attribute set to a value smaller than the unwrapped content of the cell, even if the noWrap property is set to true. Therefore, the WIDTH attribute takes precedence over the noWrap property in this scenario</div>
<h1><code>IE \ word-wrap : break-word ;</code></h1>
<div style="word-wrap : break-word ; width:200px;">abcdefghijklmnabcdefghijklmnabcdefghijklmn111111111</div>
<h1><code>IE \ word-break:break-all;</code></h1>
<div style="word-break:break-all;width:200px;">abcdefghijklmnabcdefghijklmnabcdefghijklmn111111111</div>
<h1><code>Firefox/ word-break:break-all; overflow:auto;</code></h1>
<div style="word-break:break-all; width:200px; overflow:auto;">abcdefghijklmnabcdefghijklmnabcdefghijklmn111111111</div>
<h1><code>table</code></h1>
<h1><code>table-layout:fixed;</code></h1>
<table style="table-layout:fixed" width="200">
<tr>
<td>abcdefghigklmnopqrstuvwxyz1234567890ssssssssssssss</td>
</tr>
</table>
<h1><code>table-layout:fixed; word-break : break-all; word-wrap : break-word ;</code></h1>
<table width="200" style="table-layout:fixed;">
<tr>
<td width="25%" style="word-break : break-all; ">abcdefghigklmnopqrstuvwxyz1234567890ssssssssssssss</td>
<td style="word-wrap : break-word ;">abcdefghigklmnopqrstuvwxyz1234567890ssssssssssssss</td>
</tr>
</table>
<h1><code>FF \ table-layout:fixed; overflow:hidden;</code></h1>
<table style="table-layout:fixed" width="200">
<tr>
<td width="25%" style="word-break : break-all; overflow:hidden; ">abcdefghigklmnopqrstuvwxyz1234567890</td>
<td width="75%" style="word-wrap : break-word; overflow:hidden; ">abcdefghigklmnopqrstuvwxyz1234567890</td>
</tr>
</table>
</body>
</html>
回复 支持 反对

使用道具 举报

5#
发表于 2010-1-7 05:26:05 | 只看该作者
我让得TD没那么个属性,你这样
  1. <a href='En_ProductShow.asp?ArticleID="& left(rsArticle("articleid"),21) &"'>"& gotTopic(rsArticle("EnSpec"),100) &"</a>
复制代码
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-20 11:40 , Processed in 0.105287 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表