1
Is it possible to make a Vertical line between Divs? wanted to create a tab for the data. Below is an example of the code I am using:
<div style="float:left; max-width:200px;max-height:200px;" class="text-center">
<b>Telefone</b><br />
@Html.DisplayFor(modelItem => item.Telefone)
</div>
<div style="float:left; max-width:200px;max-height:200px;margin-left:10px;" class="text-center">
<b>Celular</b><br />
@Html.DisplayFor(modelItem => item.Celular)
</div>
I want a line between them I’ve tried to put on the property of the div in the Style border-left, but it didn’t even roll...
Thank you @Cleitonpereira
– Fabio Souza