10 CSS3 Properties you Need to be Familiar With

We’ve already covered the thirty CSS selectors that we should all memorize; but what about the new CSS3 properties? Though most of them still require a vendor-specific prefix, you can still use them in your projects today. In fact, it’s encouraged!

At the conclusion of this article, we’ll work on a fun final project.

1. border-radius

Easily the most popular CSS3 property in the bunch, border-radius was sort of the flagship CSS3 property. While many designers were still terrified of the idea that a layout could be presented differently from browser to browser, a baby-step, like rounded corners, was an easy way to lure them in!

The irony is that we’re all perfectly fine with the idea of providing an alternate viewing experience for mobile browsers. Strangely, however, some don’t feel the same way when it comes to desktop browsing.

Circles

Some readers may not be aware that we can also create circles with this property. All you have to do is set the radius to half the width or height of the element.

And, if we want to have some fun, we can also take advantage of the Flexible Box Model (detailed in #8) to both vertically and horizontally center the text within the circle. It requires a bit of code, but only because of the need to compensate for various vendors.

2. box-shadow

Next, we have the ubiquitous box-shadow, which allows you to immediately apply depth to your elements. Just don’t be too obnoxious with the values you set!

box-shadow accepts four parameters:

  • x offset
  • y offset
  • blur
  • color of shadow

Now, what many don’t realize is that you can apply multiple box-shadows at a time. This can lead to some really interesting effects. For example, we can use a blue and green shadow to magnify each shadow.

Clever Shadows

By applying shadows to the ::before and ::after pseudo-classes, we can create some really interesting perspectives. Here’s one to get you started:

The HTML

The CSS

3text-shadow

Similarly to box-shadow, it must be applied to text, and receives the same four parameters:

  • x-offset
  • y-offest
  • blur
  • color of shadow

Text Outlines

Again, much like its sibling, box-shadow, we can apply multiple shadows, by using a comma as the separator. For example, let’s say that we want to create an outline effect for the text. While webkit does offer a stroke effect, we can reach more browsers by using the following method (though not quite as pretty):

4text-stroke

Be careful with this method. It is a non-standard feature. The text-stroke property isn’t yet part of the CSS3 spec. However, it is now supported by all major browsers if you use the -webkit- prefix.

Feature Detection

How can we provide one set of styling for, say, Firefox, and another set for Safari or Chrome? One solution is to use feature detection.

With feature detection, we can use JavaScript to test if a certain property is available. If it’s not, we prepare a fallback.

Let’s refer back to the text-stroke issue. Let’s set a fallback color of black for browsers which don’t support this property (all but webkit currently).

First, we create a dummy h1 element. Then, we perform a full cavity search to determine if the -webkit-text-stroke property is available to that element, via the style attribute. If it’s not, we’ll grab the Hello Readers heading, and set its color from white to black.

Please note that we’re being generic here. If you need to replace multiple h1 tags on the page, you’ll need to use a while statement to filter through each heading, and update the styling or class name, accordingly.

We’re also testing only for webkit, when it’s possible that other browsers will eventually support the text-stroke property as well. Keep that in mind.

If you want a more comprehensive feature-detection solution, refer to Modernizr.

5. Multiple Backgrounds

The background property has been overhauled to allow for multiple backgrounds in CSS3.

Let’s create a silly example, simply as a proof of concept. For lack of any suitable images nearby, I’ll use two tutorial images as our backgrounds. Of course, in a real-world application, you might use a texture and, perhaps, a gradient for your backgrounds.

Above, by using a comma as the separator, we’re referencing two separate background images. Notice how, in the first case, it’s placed in the top left position (0 0), and, in the second, the top right position (100% 0).

Make sure that you provide a fallback for the browsers which don’t provide support for multiple backgrounds. They’ll skip over the property entirely, leaving your background blank.

Compensating for Older Browsers

To add a single background image for older browsers, like IE7, declare the background property twice: first for old browsers, and the second as an override. Alternatively, you could, again, use Modernizr.

6background-size

Before modern CSS, we were forced to use sneaky techniques to allow for resizable background images.

The code above will direct the background image to take up all available space. As an example, what if we wanted a particular image to take up the entire background of the body element, regardless of the browser window’s width?

That’s all there is to it. The background-size property will accept two parameters: the x and y widths, respectively.

While the latest versions of Chrome and Safari support background-size natively, we still need to use vendor-prefixes for older browsers.

7text-overflow

Originally developed for Internet Explorer, the text-overflow property can accept two values:

  • clip
  • ellipsis

This property can be used to cut off text that exceeds its container, while still providing a bit of feedback for the user, like an ellipsis.

Did You Know? Internet Explorer has provided support for this property since IE6? They created it!

At this point, you might consider showing the the entirety of the text when a user hovers over the box.

A bit oddly (unless I’m mistaken), there doesn’t seem to be a way to reset the text-overflow property, or “turn it off.” To mimic this “off” functionality, on :hover, we can set the white-space property back to normal. This works, because text-overflow is dependent upon this to function correctly.

Did You Know? You can also specify your own string, that should be used in place of the ellipsis. Doing so will render the string to represent the clipped text.

8. Flexible Box Model

The Flexible Box Model, will finally allow us to get away from those mangy floats. Though it takes a bit of work to wrap your head around the new properties, once you do, it all should make perfect sense.

Let’s construct a quick demo, and create a simple two-column layout.

Now for the CSS: we first need to instruct the container to be treated as a flexible box. I’ll also apply a generic width and height, since we don’t have any actual content in play.

Next, let’s apply, for the demo, unique background colors to the #main div, and the aside.

At this point, there’s not much to look at.

Flexible Box Model Example 1

One thing worth noting, though, is that, when set to display: flex mode, the child elements will take up all vertical space; this is the default align-items value: stretch.

Watch what happens when we explicitly state a width on the #main content area.

Flexbox Example 2

Well that’s a bit better, but we still have this issue where the aside isn’t taking up all of the remaining space. We can fix this by using the new box-flex property.

flex instructs the element to take up all available space.

With this property in place, regardless of the width of the #main content area, the aside will consume every spec of available space. Even better, you don’t have to worry about those pesky float issues, like elements dropping below the main content area. 

Flexbox Example 3

We’ve only scratched the surface here. To learn more about Flexbox, check out our complete guides! This feature is now supported by all major browsers and you can expect it to work properly on over 99% of the devices.

9resize

The resize property—part of the CSS3 UI module—allows you to specify how a textarea is resized. It is now supported by all major browsers except IE and iOS Safari.

Note that, by default, webkit browsers and Firefox 4 allow for textareas to be resized, both vertically and horizontally.

Possible Values

  • both: Resize vertically and horizontally
  • horizontal: Limit resizing to horizontally
  • vertical: Limit resizing to vertically
  • none: Disable resizing

10. Transitions

Perhaps the most exciting addition to CSS3 is the ability to apply animations to elements, without the use of JavaScript.

Let’s mimic the common effect, where, once you hover a link in a sidebar, the text will slide to the right ever-so-slightly.

The HTML

The CSS

transition will accept three parameters:

  • The property to transition. (Set this value to all if needed)
  • The duration
  • The easing type

The reason why we don’t directly apply the transition to the hover state of the anchor tag is because, if we did, the animation would only take effect during mouseover. On mouseout, the element would immediately return to its initial state.

Because we’ve only enhanced the effect, we’ve done absolutely no harm to older browsers.

Final Project

Let’s combine the bulk of the techniques we’ve learned in this article, and create a neat effect for displaying flip cards.

Step 1. The Markup

We’ll keep it simple; within our .box container, we’ll add two divs: one for the front side, and the other for the back.

Step 2. Horizontally and Vertically Centered

Next, I want our card to be perfectly centered on the screen. To do so, we’ll take advantage of the Flexible Box Model. 

As our page will only contain this card, we can effectively use the body element as our wrapper.

Step 3. Styling the Box

We’ll now style our “card.”

Note that we’ve also instructed this element to listen for any changes to the state of the element. When they occur, we’ll transition the changes (if possible) over the course of one second (transition: all 1s).

Step 4. An Effective Shadow

Next, as we learned earlier this article, we’ll apply a cool shadow by using the ::after pseudo class.

Step 5. Styling the Child divs

At the moment, the child divs are still right on top of each other. Let’s position them absolutely, and instruct them to take up all available space.

Step 6. Fixing the Front

Refer to the image above; notice how the back-side of our card is displaying by default? This is because, due to the fact that the element occurs lower in the markup, it, as a result, receives a higher z-index. Let’s fix that.

Step 7. Rotating the Card

Now for the fun part; when we hover over the card, it should flip around, and display the back side of the card. To achieve this effect, we use transformations and the rotateY function.

Step 8. Mirrored Text

Doesn’t that look awesome? But, now, the text appears to be mirrored. This, of course, is because we transformed the container. Let’s offset this by rotating the child div 180 degrees as well.

And with that last bit of code, we’ve achieved our neat effect! 

Conclusion

Thank you so much for reading, and I hoped you learned a lot!

Leave a comment

Your email address will not be published.