gpt4 book ai didi

html - 如何在 ionicframework 中显示图像标题?

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

<ion-view title="Categories">
<ion-content ng-init="loadImages()">
<div id="catlist">
<div class="row" ng-repeat="image in images" ng-if="$index % 2 === 0">
<div class="col" ng-if="$index < images.length">
<a data-id="{{cats[$index].CategoryID}}" >
<span id="Content" class="col col-25 ">{{cats[$index].CategoryName}}</span>
<img ng-src="{{images[$index].src}}" width="100%" />
</a>
</div>

<div class="col" ng-if="$index + 1 < images.length">
<a data-id="{{cats[$index+1].CategoryID}}" >
<span id="Content" class="col col-25 ">{{cats[$index+1].CategoryName}}</span>
<img ng-src="{{images[$index + 1].src}}" width="100%" />
</a>
</div>
</div>
</div>
</ion-content>
</ion-view>

#Content {
background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
color: #f4f2f3;
height: auto;
position: absolute;
text-align: center;
width: 310px;
text-decoration: none !important;
background-opacity: 0.1;
font-family: arial;
font-size: 15px;
font-weight: bold;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
}

我已经创建了 2*2 图像网格并在图像顶部显示了图像标题。但是图像标题宽度不适合图像宽度。我正在使用 ionic 框架。如何根据图像宽度调整图像标题宽度? enter image description here

最佳答案

检查您的 css 以获取 #Content(这应该更改为类而不是 id,因为它假设每页一个 id 只有一个元素。但我不认为这就是问题发生的原因)

在您的#Content 样式中,您能否尝试更改

width: 310px;

width: 100%;

如果不行,尝试添加

display: block;

希望这有帮助,对不起我的英语:)

关于html - 如何在 ionicframework 中显示图像标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30723502/

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