CSS Styles: Inline vs. Internal vs. External

Before you master CSS, you need to understand the different ways in which you can apply the CSS to your HTML. There are three basic ways to include style in your code: inline styling, internal stylesheets, and external stylesheets.

Inline styling […]

Read Article

When to Use CSS !important

Despite the fact that it’s widely used, applying CSS3’s !important declaration to your stylesheets isn’t considered to be a best practice. The !important declaration is typically used to override style rules that are defined elsewhere in the CSS. For example, […]

Read Article

Styling Lists with CSS

By default, each list item in any unordered list will be preceded by a standard round bullet point, like in the example below.

If round bullet points aren’t your style, CSS gives us a few different list-item marker options […]

Read Article

How to Center Any HTML Element

We’ve all had that pesky HTML element that refuses to center no matter how many different CSS styles we apply. We always get it eventually, but sometimes it’s not before a lot of time has been wasted trying to remember […]

Read Article

Quick Tip: Multiple Classes

Sometimes it’s necessary for an HTML element to have two, three, or even four + classes assigned to it. To assign multiple classes to an element, all you need to do is separate them with a space, like this:

< View […]

Read Article

CSS Border-Radius Property

The CSS border-radius property can be used to give HTML elements rounded corners. Most commonly, the property is seen using only one value, but it actually will take up to four values.

Assigning one value to the border-radius property will apply […]

Read Article