我正在尝试在页面上显示简单的块布局。只有几个盒子,没什么特别的。这是我的代码:
http://sub.domain.com/images
这是我的css:
@section Content{
@model IEnumerable<webapp_stufv.Models.Article>
<h2>@ViewBag.Title</h2>
@foreach ( var item in Model ) {
<div class="floating-box">
<h4>
@Html.DisplayFor( modelItem => item.Title )
</h4>
<p>
@Html.ActionLink( @item.Content.Substring ( 0, 100 ), "Details", "News", new { id = item.Id }, null )
</p>
</div>
}
}
之前我从未使用过内联块布局,所以也许它很简单。这段代码来自W3C,直接复制粘贴,所以它应该正常工作吗?
编辑:这应该是这样的:https://jsfiddle.net/fha4oftm/ EDIT_2:我注意到在浏览器中检查我的页面时,我的.css文件中不存在浮动框。这很奇怪,因为它存在于我项目的css文件中。
答案 0 :(得分:1)
尝试将以下内容添加到视图顶部...
SomeClass.make_ini(data)