GLASS EFFECT HOVER BUTTONS Hey Folks ✋! Today I'am going to show you how you can build " Beautiful Glass Effect Hover Button " But first of all you must know what is " Hover-Effect ". HOVER: Applies to any element being hovered by the user's pointing device, but not activated. There are three pseudo-classes that allow you to change the appearance of elements when a user is interacting with them. HOVER ACTIVE FOCUS but we focus only hover today and clear our concept 😃😊. WHEN WE APPLIED HOVER ? This is applied when a user hovers over an element with a pointing device such as a mouse. This has commonly been used to change the appearance of links and buttons when a user places their cursor over them. It is worth noting that such events do not work on devices that use touch screens (such as the iPad) because the screen is not able to tell when someone is hovering their finger over an element. EXAMPLE OUTPUT SOURCE CODE HTML: <!DOCTYPE html > <htm
Netflix Logo With CSS Hello Folks! today I'am going to share with you a "Netflix" logo design with CSS code is easy and simple even 10y/o child could try. Let's see our Source Code : If you know Html and CSS very well then this post is just a piece of cake with you not and hard and fast coding is applied just span tag i choose and design it accordingly. Index.html <div class=" container "> <span></span> <span></span> <span></span> </div> Style.CSS body { background:#26242e; } .container{ position:absolute; top:30%; left:50%; display:flex; width:120px; height:200px; overflow:hidden; } span { position:absolute; width:40px; height:200px; background:#d81f26 } span :nth-child(1){ right:0; } span :nth-child(2){ left:40px; z-index:1; transform:skew(22deg); box-shadow:0 0 15px #000; } Explanation of Code : .Container: In ".container" we just center our &