将标题截断为单行和容器宽度 时间:2014-03-01 作者:vytfla 有没有办法将标题截断为容器宽度?我可以使用下面的代码将一个长标题截断为一行,但这对移动设备来说并不适用。<h3> <?php $thetitle = $post->post_title; $getlength = strlen($thetitle); $thelength = 33; echo substr($thetitle, 0, $thelength); if ($getlength > $thelength) echo "..."; ?> </h3> 1 个回复 SO网友:Leader 使用CSS3的“文本溢出:省略号;”怎么样?这样做将确保你的标题保持在一行中,删掉任何超出容器宽度限制的内容。 结束 文章导航