我有一个小的perl脚本生成html并构造实际的HTML代码,但是生成的内容(以html格式)会溢出到页面上的其他表中。
my $lwpcurl = LWP::Curl->new();
my $content = $lwpcurl->get('http://panewsalerts.us/ticker.php?alerts=20','http://www.alertpage.net/live.htm');
$content =~ s/^(?:.*\n){1,4}//;
print ($content);
我的'mapshow'div有以下内容:
div.mapshow
{
border:1px solid black;
border-style:hidden;
position:absolute;
overflow:none;
top:0;
margin-left:50%;
}
当我在div中添加输出代码时,即:
<div class=mapshow style=\"width:49%;\">
<div> (data from perl script output that is in HTML </div>
表数据溢出/溢出到其他表中。无论如何要解决它?我已经尝试将溢出调整为自动和隐藏,并且没有太多运气。
您可以转到
查看代码的输出http://panewsalerts.us/ticker.php?alerts=20
答案 0 :(得分:2)
在输出代码中只有一个表。
尝试使用
table-layout:fixed;
也许也可以打破或打包。