axorax.hashnode.devAdd background blur with one line of CSSAdding background blur to an element can make it more visually appealing and it's also REALLY use to do it. So, you might as well add it cuz why not? ¯_(ツ)_/¯ The line of code you need backdrop-filter: blur(5px); Besides that, make sure that the ele...Jul 28, 2024·1 min read
axorax.hashnode.devHow to delete entire git commit history?I have deleted my git commit history plenty of times just to make my repository look "clean" (roast me in the comments for it). It's probably best to not do this but I will still share how to do it. Delete entire commit history git checkout --orphan ...Jul 26, 2024·1 min read
axorax.hashnode.devGradient text for your website in 5 methodsIn this article, I will show you a couple of ways to get gradient text using CSS (and some without CSS). You may already be familiar with one of the methods. HTML for method - 1, 2 and 3 <h1>Sub to Axorax on YT!</h1> Method - 1 (CSS) h1 { backgrou...Jul 25, 2024·1 min read
axorax.hashnode.devAdd placeholder text to div with contenteditable="true"You may have come across the contenteditable attribute. It's used in many places. It's a much better alternative to something like a textarea. You can add contenteditable="true" to any div and then it acts like an input field. In this article, I will...Jul 25, 2024·1 min read