Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Get full width nav to flex dynamically Reply To: [Solved] Get full width nav to flex dynamically

#206738
kwerty
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.