Is it possible to make a vertical line between DIVs? wanted to create a tab for the data. Here is an example of the code I'm 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 vergical line between them already tried for in the property of the div in Style the border-left, but neither rolled ...