7.6.2 Applying Bootstrap Styles tot he Layout; Listing 7-26 Applying Bootstrap to Style the List.cshtml File

This commit is contained in:
Jason Zhu 2021-09-08 16:14:14 +10:00
parent 72d6a86d87
commit 982ff29ec1

View File

@ -7,10 +7,12 @@
@foreach (var p in Model.Products) @foreach (var p in Model.Products)
{ {
<div> <div class="well">
<h3>@p.Name</h3> <h3>
@p.Description <strong>@p.Name</strong>
<h4>@p.Price.ToString("c")</h4> <span class="pull-right label label-primary">@p.Price.ToString("c")</span>
</h3>
<span class="lead">@p.Description</span>
</div> </div>
} }