Using Photoshop to create cool images is great and all but what about when you need dynamic content? I was working on a website recently that had some really cool…
::first-letter is another nice pseudo element which allows you to style the first letter in an element without needing to use additional HTML such as a tag. This method works…
Adding a line under text is generally done with basic text underline formatting. However, it doesn't allow you to add any margin or padding between the text and line. This…
There are so many different methods when targeting elements in CSS. The most widely used are the class "." and id "#" selectors. Sometimes you may need to target based…
When linking a telephone number on your website using the a href tag you will notice inconstant styles from mobile devices. For example on a desktop or laptop the number…
After creating another post on absolute position footers we decided to add a quick post on how to create a sticky footer. html{ position: relative; min-height:100%; } body{ margin:0 0…
This is a basic example of how to dynamically add new options to your select drop down without reloading the page. I'm not saving these in the database, but it's…
Is there a way to text-transform an all caps dataset? Example data: THIS IS MY TEXT If I add text-transform:capitalize; on that text nothing happens. My desired output of the original…