Home › Forums › CSS › [Solved] Get full width nav to flex dynamically › Reply To: [Solved] Get full width nav to flex dynamically
August 19, 2015 at 4:33 am
#206738
Participant
Here’s the css rule you might be looking for
.ulink {
border-right: 3px solid #fff;
display: block;
float: left;
height: 40px;
text-align: center;
width: 33.333%;
}
.ulink:last-child {
border-right: 0;
}
Thanks.