css menu hover effect ( source code ) HTML Home About Services Portfolio Contact CSS body { margin: 0; padding: 0; font-family: poppins; background-image: url(https://i.postimg.cc/rmVqXyCk/1.jpg); background-size: cover; background-position: center center; height: 100vh; } .menu-area ul { padding: 0; display: flex; float: right; } .menu-area ul li{ list-style-type: none; padding: 10px 20px; } .menu-area ul li a { text-decoration: none; text-transform: uppercase; font-size: 20px; color: #fff; position: relative; font-weight: bold; } .menu-area ul li:hover a{ color: #333; } .menu-area ul li a:before{ content: '['; position: absolute; left: 0; opacity: 0; transition: .6s; } .menu-area ul li a:after{ content: ']'; position: absolute; right: 0; opacity: 0; transition: .6s; } .menu-area ul li:hover a:before{ left: -15px; opacity: 1; } .menu-area ul li:hover a:after{ right: -15px; opacity: 1; }
No comments