Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
December 19, 2022 04:11 am GMT

Interview: Basic Horizontal Nav Bar

It's like this:

Image description

Here is the code:

Mostly self explanatory:

<ul class="list">    <li *ngFor="let item of list">{{item}}</li></ul>
.list {    list-style-type: none;    margin: 0;    padding: 10px 0;    border: 1px solid grey;    margin: 5px 5px 0 5px;    > li {        display: inline;        padding: 11px;        border-right: inherit;        opacity: 0.7;        &:hover {            background-color: grey;            opacity: 1;        }    }}

Thanks,
Vishwak


Original Link: https://dev.to/urstrulyvishwak/interview-basic-horizontal-nav-bar-g5c

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To