Tables have been a very useful tool for website developers pretty much since the beginning of the internet. In the “old days” of web development html tables were all over the place, and were widely used both for displaying data...
Category: CSS Tips
What is a CSS Pseudo Element?
CSS pseudo elements are keywords that can be added to an HTML element’s CSS selector, in order to style a certain piece of that element. Using pseudo element code you can pinpoint how you would like a portion of an...
What is a CSS Pseudo Class?
CSS pseudo classes can be added to an element’s CSS selector, in order to style it in certain way, to affect the state that it is in. Pseudo classes affect the state of an html element, and cause some action...
How to Create CSS Animations: Keyframes
Animating CSS is so much fun and there is SO much room for creativity working with this coding technique. Once you understand the basic structure of how animations are set up, you can use that foundation as a stepping-off point...
How to Create CSS Animations: Transform and Transition
As I mentioned in another post about creating a CSS box/grid-based photo guessing game, one of the things I love about my profession is the seemingly endless possibilities of what can be done using code, and how it gives me...
How to Use Inline CSS on Your Blog or Website
There are several ways to use CSS (Cascading Style Sheets) to enhance the look and functionality of your blog or static website. One of those ways is to use inline CSS. I use this method mainly on a temporary basis,...