设置图像的宽度和高度

时间:2014-05-05 15:05:32

标签: php html css image width

我目前正在编写使用存储在数据库中的图像的幻灯片。 我想知道如何设置图像的宽度和高度。这是我的代码:

<div id="my-slide">
<?php
$resultado = mysqli_query($con, "SELECT * FROM slides ORDER BY id DESC LIMIT 3");

while($fila = mysqli_fetch_array($resultado))
{
?>
  <div data-lazy-background="images/<?php echo $fila["slideimg"]; ?>">
    <h5><?php echo $fila["cap"]; ?></h5>
  </div>
<?php
}
?>
</div>

1 个答案:

答案 0 :(得分:0)

在图像Div之间设置高度和宽度

<div width="100px" height="100px"  data-lazy-background="images/<?php echo $fila["slideimg"]; ?>">