5 CSS tricks that you should know
In this article you will learn five unique and useful CSS tricks.
1. Disable a link.
.inactive-link{
pointer-events : none;
cursor : default;
}
You can disable any link by using the CSS code above.
2. Disable text selection.
.prevent-select{
use...
venkybellara.io1 min read