【发布时间】:2021-03-21 10:01:34
【问题描述】:
我正在使用一个名为 Remark 的主题,它非常好,但我需要覆盖 css 样式以减少页面两侧的那些空间(如图所示)。有谁知道如何帮助我?
项目:Asp.net Core MVC。
谢谢:)
//页面
@model IEnumerable<Retaguarda.Application.ViewModels.Financeiro.FinanceiroListViewModel>
@{
ViewData["Title"] = "Gerenciar Controle Financeiro";
//var mensagemObject = TempData["Mensagem"];
}
<div class="panel">
<div class="panel-heading">
<h2 class="panel-title">@ViewData["Title"]</h2>
<div class="page-header-actions">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a asp-action="Index" asp-controller="Home">Home</a></li>
<li class="breadcrumb-item active">financeiro-gerenciar/listar-todos</li>
</ol>
</div>
</div>
<div class="panel-body container-fluid">
<table id="dtFinanceiroIndex" class="table-responsive-lg table table-striped table-bordered center-header table-vcenter" cellspacing="0" width="100%">
<thead class="bg-blue-grey-100">
<tr>
<th>
<span class="checkbox-custom checkbox-default">
<input id="dt-financeiro-selectable-all" class="selectable-all" type="checkbox">
<label></label>
</span>
</th>
<th>
Tipo de Controle Financeiro
</th>
<th>
Número do Documento
</th>
<th>
Valor do Documento
</th>
<th>
Cliente/Fornecedor
</th>
<th>
Ações
</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
</div>
</div>
【问题讨论】:
-
它只是使用 Bootstrap,所以请阅读他们的文档getbootstrap.com/docs/4.5/getting-started/introduction
标签: html css asp.net-mvc layout