作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
上传图片后,图片在表格中有不同的空间。我的意思是每张图片之间的空间是不同的。
我正在使用这个:
<div class="table-responsive">
<table class="table">
<tr>
<th style="width: 10%"><h4>@Html.DisplayFor(model => model.FirstName)</h4></th>
<th style="width: 30%"><h4> @Html.DisplayFor(model => model.LastName)</h4></th>
<th style="width: 120%"></th>
</tr>
<tr>
<td>
<img width="200" height="150" src="@Url.Action("GetImage", "Account", new {id = Model.Id })">
</td>
</tr>
<tr>
<th><h2><br /></h2></th>
</tr>
<tr>
@foreach (var item in Model.LolaBikePhotos)
{
<th style="width:10%"> <img src="~/Images/profile/@item.ImagePath" alt="" height=150 width=200 /></th>
}
</tr>
</table>
</div>
这是图像的循环:
@foreach (var item in Model.LolaBikePhotos)
{
<th style="width:10%"> <img src="~/Images/profile/@item.ImagePath" alt="" height=150 width=200 /></th>
}
我上传的图片说明了一切。
谢谢
最佳答案
首先为什么<th style="width: 120%"></th>
?宽度将等于 70%在我建议你使用 css 网格而不是表格之后
关于twitter-bootstrap - 上传后的图像没有相等的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26552439/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!