Here is a quick css trick for helping to see where your elements are placed in a website. Continue reading CSS Tricks & Tips - Use Outline instead of Border to see elements
Tag: coding
CSS Tips & Tricks: Using Border Box
Today we'll go over a very easy css hack that will let you define the size of elements and not have it be affected by border and padding values. Continue reading CSS Tips & Tricks: Using Border Box
How to reverse a string in JavaScript
Here is a really simple way to reverse a string in Javascript. let reverseString = string.split('').reverse().join(''); Continue reading How to reverse a string in JavaScriptspan>