How to Change Text Selection Color with CSS

How to Change Text Selection Color with CSS

Whenever a user selects a website text to highlight, it automatically shows some background and text color. The default color is blue for background and white for text. If you have not noticed it before just select the text and you will get it. So, In this tutorial, I am going to show you how … Read more

Make Div Stick to The Bottom of Page

Make Div Stick to The Bottom of Page

As a web developer, everyone need sometimes to make a div stick to the bottom of a web page. Generally, I got a lot of questions related to this topic but don’t found the complete guide. In this tutorial, I am going to share with you a complete tutorial on how to create a fixed … Read more

2 Simple Steps to Create Top Navigation Bar

In this tutorial we are going to see how to create top navigation bar. Navigation bar is the most important part of any website or blog. So here we are going to use the 2 simple steps to create navigation bar with HTML and CSS. 1. Write Markup <div class=”nav”> <ul> <li class=”home”><a href=”#”>Home</a></li> <li … Read more

How to Disable Link With CSS

In this tutorial, we are going to see an example of how to disable links with css. If you want to show not clickable link, then you can easily do that using css. I have created an anchor tag with a class attribute, then write css for class to disable link. I have written two css … Read more

How to Rotate HTML Elements Using CSS

How to Rotate HTML Elements Using CSS

In this tutorial we will see how to rotate an element like image or text using CSS. it is generally required by a web designer to give some animation effect. Animation add some extra affect in your webpage. In this example, we will use CSS rotation property to rotate an element. @keyframes rule is used to animate … Read more