CSS
Hey, you can create responsive YouTube videos with the help of CSS only and maintain its aspect ratio without needing any third-party JavaScript library. The easiest and quickest way to do it is with the following CSS. HTML <div class=”container”>...
React
Here is an image that lists differences between props and state in REACT Components.
CSS Animations
Here is a simple content-loading animation I created in one of my freelance projects that looks similar to the other content-loading animations you might have seen on other websites like Facebook. The logic is to animate the background gradient from left to right in...
CSS
Here is an example of simple CSS only blinking cursor that you can use and modify according to your needs. I have used keyframes to introduce infinite blinking animation to the cursor. See the Pen Simple CSS Blinking Cursor by Puneet Sharma (@webdevpuneet) on...
HTML
Use autocomplete=”new-password” in you input used for password. <div class=”form-group”> <label>Password</label> <input class=”form-control” autocomplete=”new-password” type=”password”...