1
I put the edge in quotation mark, because I don’t know if it’s really edge the name of it.
I’d like to make that:
Stay that way:
In the case with the border passing through the text, without getting over.
How can I do this using css?
HTML:
<div class="divICMS"><h6>ICMS</h6>
@(Html.DevExtreme().Form<FederacaoViewModel>()
.ID("formularioCadastro2")
.ShowValidationSummary(false)
.Items(items =>
{
items.AddGroup()
.Items(groupItems =>
{
groupItems.AddSimpleFor(m => m.UF_AliqInterEstadual).CssClass("fedEstadual")
.Editor(e => e.NumberBox().Width("70px").ID("fedEstadual"));
groupItems.AddSimpleFor(m => m.UF_AliqInterna).CssClass("fedInterna")
.Editor(e => e.NumberBox().Width("70px").ID("fedInterna"));
groupItems.AddSimpleFor(m => m.UF_AliqFCP).CssClass("fedFCP")
.Editor(e => e.NumberBox().Width("70px").ID("fedFCP"));
});
items.AddSimpleFor(m => m.UF_CalcularFCP).CssClass("fedCalFCP")
.Label(l => l.Visible(false))
.Editor(editor => editor.CheckBox().Text("Calcular Fundo de Combate à Pobreza"));
})
.FormData(Model)
)
</div >
CSS:
.divICMS
{
border: solid 0.01em;
padding: 6px;
height: 175px;
width: 335px;
position: absolute;
top: 130px;
text-align: start;
}