gpt4 book ai didi

html - 如何在工具栏上同时添加图像和文本而不溢出

转载 作者:行者123 更新时间:2023-11-27 23:17:33 25 4
gpt4 key购买 nike

我有 mat-tab 并且我想放置从 accuweather API 获得的天气信息。我的工具栏是响应式和 flex 的。当页面大小改变时,这些图像会变小。这工作正常但是当我想添加温度信息时在图像下,溢出正在发生并且看起来很糟糕。我怎样才能使图像下的那些温度数字没有任何溢出。

实际 enter image description here预计 enter image description here现实 enter image description here这是我在下面尝试的内容

        <li>
<div class="d-flex">
<div *ngFor="let dailyForecast of dailyForecasts">
<img class="responsive" src="{{appConfig.weatherIconsPath}}{{dailyForecast.Night.Icon}}.png">
<small>{{dailyForecast.Temperature.Minimum.Value}}°C /
{{dailyForecast.Temperature.Maximum.Value}}°C</small>
</div>
</div>
</li>

最佳答案

尝试使用 CSS 设置图像的最大宽度:

img.responsive {
max-width: 40px;
}

关于html - 如何在工具栏上同时添加图像和文本而不溢出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58190486/

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