gpt4 book ai didi

html - 最大高度和最大宽度不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 13:03:22 26 4
gpt4 key购买 nike

我想在我的主页上显示不同大小的图像。我正在使用最大宽度和最大高度,但图像装饰不正确。我正在使用 Bootstrap 。这是我的 PHP 代码:

<? while($chanelrow = mysqli_fetch_array($result)) { ?>
<div class="row">
<div class="col-md-4">
<a href="#">
<img class="img-rounded" src="<?=$chanelrow['chanel_logo']?>" style="max-width:200; max-height:200" alt="">
</a>
</div>
<div class="col-md-8">
<h3>Project Two</h3>
<h4>Subheading</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Ut, odit velit cumque vero doloremque repellendus distinctio
maiores rem expedita a nam vitae modi quidem similique ducimus!
Velit, esse totam tempore.</p>
<a class="btn btn-primary" href="#">View Project <span class="glyphicon glyphicon-chevron-right"></span></a>
</div>
</div>
<? } ?>

This is the output

如何处理我的图片尺寸?

最佳答案

尝试将单位类型(px、%、em 等)添加到宽度/高度数字:

<img class="img-rounded" src="<?=$chanelrow['chanel_logo']?>" style="max-width:200px; max-height:200px" alt="">

关于html - 最大高度和最大宽度不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25308958/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com