在单行中显示<marquee>标签

时间:2018-12-15 23:19:04

标签: php html dynamic while-loop marquee

Illustration of what I want 我有以下代码,但它在两行中显示字幕输出,我希望它在一行中显示。

检查屏幕截图。 请帮忙。

我知道不提倡使用字幕,但我必须使用它。任何帮助将不胜感激。

谢谢

<?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> &nbsp;Destin : 
            <td><?php echo $row['tocity']; ?></td>
         </li>
      </tr>
   </div>
   <br>
   <?php endwhile ?>
</marquee>

1 个答案:

答案 0 :(得分:0)

谢谢大家的帮助。

实际上,float:left;做了魔术,这是之后的截图。 enter image description here