我如何在div中使用这个结果?

时间:2011-02-21 12:59:58

标签: css html

$smweb = explode(",",$smlar); $i = 0;
        foreach ($smweb as $webnm){ if ($i++ == 6)
    break; print "<a href='/".$webnm."'>".ucfirst($webnm)."</a>";

以上结果

<a href="/google.com">google.com</a>
<a href="/twitter.com">twitter.com</a>
<a href="/facebook.com">facebook.com</a>
<a href="/myspace.com">myspace.com</a>
<a href="/mixx.com">mixx.com</a>
<a href="/digg.com">digg.com</a>

问题是它不适合名为“smweb”的div id,它会走到外面并且不会在div限制内破坏。 div宽度为500px。我怎样才能在div中适应相同的情况?

2 个答案:

答案 0 :(得分:1)

终止你的行。

使用

print "<a href='/".$webnm."'>".ucfirst($webnm)."</a><br/>";

答案 1 :(得分:1)

</a>之后添加一个空格 - 然后它会正常换行。像这样:

$smweb = explode(",",$smlar); 
$i = 0;
foreach ($smweb as $webnm) { 
    if ($i++ == 6) {
        break; 
    }
    print "<a href='/".$webnm."'>".ucfirst($webnm)."</a> ";
}