0

我有一个小的 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
4

1 回答 1

2

在您的输出代码中只有一张表。

尝试使用

table-layout:fixed;

也可能是分词或换行。

于 2013-10-25T15:10:39.633 回答