我有以下代码,但它在两行中显示字幕输出,我希望它在一行中显示。
检查屏幕截图。 请帮忙。
我知道不提倡使用字幕,但我必须使用它。任何帮助将不胜感激。
谢谢
<?php
$sql = $dbh->prepare ("SELECT fromcity, tocity from tblbooking order by id DESC LIMIT 2");
$sql->execute() ;
?>
<h3 style="color: #f52d31; text-align: center; background-color: #8080807a;"> Latest Rides </h3>
<marquee>
<?php while( $row = $sql->fetch()) : ?>
<div>
<tr>
<li style="font-size: 20px; color: red; list-style: none; background-color: #cac2c2b8; width: 20%;">
<i class="fa fa-location-arrow" aria-hidden="true"></i> Origin :
<td><?php echo $row['fromcity']; ?></td>
</li>
<li style="font-size: 20px;color: red; list-style: none; background-color: #cac2c247; width: 20%;">
<i class="fa fa-map-marker" aria-hidden="true"></i> Destin :
<td><?php echo $row['tocity']; ?></td>
</li>
</tr>
</div>
<br>
<?php endwhile ?>
</marquee>