Hire a web Developer and Designer to upgrade and boost your online presence with cutting edge Technologies

Tuesday, November 29, 2011

Get to grips with CSS3 multiple background images



Get to grips with CSS3 multiple background images

What if you could keep your HTML clean and still add a number of separate images to your design? Freelance front-end designer Prisca Schmarsow shows you how you can do this with CSS3 multiple background images

We’ve all been there: you’re on a flow, you’re drawing and sketching your bright idea of a design that is to wow people with its imagery. Then, you come to produce it.
And your enthusiasm gets a blow as you realise that this is not quite as easily done as you thought. Your design is to be accessible and requires several images which should all be flexible and controlled separately.
What are the options? Do you commit crimes against semantics and add presentational markup to your otherwise clean and minimal code? Or do you compromise your original idea,  stick to your principles but sacrifice some of the finer details?
Luckily we no longer need to worry in regards to background images. Now, we have CSS3 and the ability to apply multiple background images to any element we like. Creative freedom!
In this tutorial, I’d like to take you through creating a 404 page design using multiple background images.

The final page design

Our final design shows the error message with a search box, presented in a sign suspended from a balloon hovering over a landscape. At the top, there is one large cloud with a few smaller clouds scattered over the sky. We’ll also keep the ‘404’ on the page to indicate the error. 
Our hidden surprise is to use a subtle parallax effect to shift the position of the mountain peaks, hills, and the clouds when the browser window is resized.

HTML structure

Let’s start by setting up the HTML page, getting our boxes into place. Considering the content first, we can keep to three core boxes:
  1. one wrapper DIV which will contain all page content
  2. an article for the text and search box
  3. a footer for the 404 error
  • View source
  • Copy code
  1.         <div id="wrap">
  2.                
  3.                         <h1>Dear Traveller,</h1>
  4.                         <p>
  5.                                 apologies for the interruption in your journey. We seem to have lost our way a little.
  6.                                 <br />
  7.                                 Please type in your desired destination and we'll take you there.
  8.                         </p>
  9.                         <form>
  10.                                 <input type="text" value=". . ." id="search" onclick="this.value=''" />
  11.                                 <input type="submit" value="take me there ☞ " id="searchsubmit" onclick="search.value='. . . '" />
  12.                         </form>
  13.                 </article>
  14.                        
  15.                                 404
  16.                         </footer>
  17.  
  18.         </div>
  19. </body>
With the HTML done we're set.
and ready to get onto the styling.

Content styling

Let’s start by styling the content first and then proceed to adding the images.
All content is placed on the sign suspended from the balloon – we will set the width of the wrapper DIV to be a minimum of 150px, adding a percentage for smaller/larger screens, and centre it within the window. All content has a generous outer spacing to allow for good legibility as well as the addition of our border graphics later on.
  • View source
  • Copy code
  1. /* content wrap */
  2. #wrap {
  3.         min-width: 150px;
  4.         width: 28%;
  5.         margin: 0 auto;
  6. }
  7.  
  8. /* main content */
  9. article {
  10.         border: 1px solid #461200;
  11.         background-color: #d4d4d4;
  12. }
  13. article h1 {
  14.         display: block;
  15.         width: 76%;
  16.         margin: 1.8em auto .2em auto;
  17.         font-size: 1.26em;
  18.         font-style: italic;
  19. }
  20. article p {
  21.         width: 76%;
  22.         margin: 0 auto 1em auto;
  23.         font-style: italic;
  24. }
  25.  
  26. /* search box */
  27. article form {
  28.         display: block;
  29.         width: 76%;
  30.         margin: 1em auto 0 auto;
  31. }
  32. article input {
  33.         display: block;
  34.         width: 96%;
  35.         margin: 1em auto 0 auto;
  36.         padding: .26em;
  37.         border: none;
  38.         border-bottom: 1px dashed #cc5100;
  39.         background: rgba(255,255,255,.4);
  40.         font-size: 1.36em;
  41.         color: #1d3d89;
  42. }
  43. article input:hover, article input:active, article input:focus {
  44.         background: #fff;
  45.         color: #531900;
  46. }
  47. article input[type=submit] {
  48.         display: block;
  49.         width: 100%;   
  50.         background: none;
  51.         border: none;
  52.         border-bottom: 2px solid #cc5100;
  53.         font-size: 1.46em;
  54.         line-height: 1.2;
  55.         margin: .5em 0 2.36em 0;
  56.         color: #cc5100;
  57. }
  58. article input[type=submit]:hover, article input[type=submit]:active, article input[type=submit]:focus {
  59.         cursor: pointer;
  60.         color: #1d3d89;
  61.         font-style: italic;
  62.         border-color: #531900;
  63. }
  64.  
  65. /* footer */
  66. footer {
  67.         text-align: center;
  68.         font-size: 3em;
  69.         line-height: 1;
  70.         color: #ccc;
  71.         color: rgba(255,255,255,.2);
  72. }
Our page now shows all content neatly grouped and centred within the browser window.

Adding the visuals

Before we can get stuck into adding our images let’s have another look at the design and figure out how many images we will need.
Image break down:
  1. background image – sized to fit the window
  2. cloud – large cloud visual, centred within the window
  3. scattered clouds – several smaller clouds, flexible positioning
  4. peaks – repeated horizontally, flexible positioning
  5. hills – repeated horizontally, flexible positioning
  6. balloon – centred above the page content
  7. sign background – tiled
  8. 4x corner images – positioned into each of the four corners of the sign
Let’s go through implementing each image in turn:

1. background image

The background image shows a soft texture with a subtle gradient, lighter at the horizon and darkening towards the sky. In order to maintain this shading we'll scale the image to fill the window.
As the visual sitting at the very bottom of the image stack we will apply this to the  tag. To ensure that the HTML box will fill the window, regardless of actual content height, we will set the width and height to 100% and apply the background image as follows:
  • View source
  • Copy code
  1. html, body {
  2.         padding: 0px;
  3.         margin: 0px;
  4.         width: 100%;
  5.         height: 100%;
  6. }
  7.  
  8. /*      --------------------------------
  9.         separate rules to keep FF happy
  10. -------------------------------- */
  11. html {
  12.         background-color: #447d9a;
  13.         background-image: url(imgs/bg.jpg);
  14.         background-repeat: repeat-x;
  15.         background-size: cover;
  16.         background-attachment: fixed;
  17. }
Note that the rules are written very specifically, avoiding the shorthand approach. This is necessary to avoid problems with Firefox.

If you want to find out more about the CSS background size property go and read this great tutorial by Stephanie Rewis.

2. cloud, peaks and hills

Now we’re getting to the fun part, and the point of this tutorial: the use of multiple background images, applied to one HTML element – but there are a few things to consider first.

Browser compatibility:

Luckily, at the time of writing, the use of multiple background images is supported by the latest versions of all common browsers.
If a browser doesn't support multiple background images, it will ignore the entire property. It's therefore advised to set a default background first, even if only for colour, and then overwrite it with the multiple background images which will be implemented by all compatible browsers.
For more detailed information on browser support, see caniuse.com.

Stacking order of multiple background images:

To apply several images the standard background property is used, listing the images one by one, separated by commas. If you want to specify a background colour it will need to be set last and without the preceding comma.
  • View source
  • Copy code
  1. background: url(img1.png), url(img2.png), url(img3.png) #fdfdfd;
When applying more than a single background image to an HTML element a set stacking order will become apparent. Contrary to what you might expect the order is reversed to the HTML stacking order where the first element listed becomes the bottom most layer.
For the CSS3 multiple images however, the first image you specify will become the top most image, with the second image positioning itself underneath, the third image again below the first and the second and so on.

Controlling positioning and repetition:

Controlling the additional properties of the images – we can either use shorthand, or a second declaration.
Shorthand CSS:
  • View source
  • Copy code
  1. background: url(img1.png) top left no-repeat,
  2.  
              url(img2.png) bottom left repeat-x;
Separate declarations:
  • View source
  • Copy code
  1. background: url(img1.png), url(img2.png);
  2. background-position: top left, bottom left;
  3. background-repeat: no-repeat, repeat-x;
In this case, each property will applied following the order specified for the images.

Back to our design:

Taking another look at our design, we'll need to be clear on how the visuals are to be stacked.
First we'll need to specify one of the visuals as background image for browsers that won't be able to implement the multiple background images.
Overwriting this property we can then proceed to list our images in our preferred stacking order:
  • View source
  • Copy code
  1. body {
  2.         background: url(imgs/peaks.png) bottom center repeat-x;
  3.         background: url(imgs/cloud.png) top center no-repeat,
  4.                 url(imgs/clouds-scatter.png) -46% -330px repeat-x,
  5.                 url(imgs/hills.png) bottom center repeat-x,
  6.                 url(imgs/peaks.png) bottom right repeat-x;
  7. }
Both the percentage and the left / right positioning of the images will now show the parallax effect when the window is resized. And best of all, no additional mark up was required!

3. Custom corners

The background for our design is now complete. Time to finalise the content wrapper, adding the balloon and the sign’s custom corners.
Positioning the content itself lower within the page will free space for the balloon visual which is applied to the wrapper DIV and positioned into place.
  • View source
  • Copy code
  1. /* content wrap */
  2. #wrap {
  3.         min-width: 150px;
  4.         width: 28%;
  5.         margin: 0 auto;
  6.         padding: 150px 0 0 0;
  7.         background: url(imgs/balloon.png) center 85px no-repeat;       
  8. }
  9. /* main content */
  10. article {
  11.         border: 1px solid #461200;
  12.         background-color: #d4d4d4;
  13.         margin: 150px 0 0 0;   
  14. }
Our final step is to add the custom corners to the sign, framing the content text. With a fixed sized element the solution would be simple, one plain image would be enough. 
But as we’d like our content box to remain flexible and resize to the window width, as well as resize when the text is enlarged, we'll need to apply each corner image separately, allowing the box itself to remain scalable.
Before the support for multiple background images this would have been another headache and dilemma. You might remember doing some nasty things when creating rounded corner boxes? Polluting your code with presentational markup?
No more. For these corner graphics we can now easily add four images, a separate graphic for each corner. Again, we need to choose one image to be applied for older browsers and then add the corner visuals in one by one, setting the background last.
  • View source
  • Copy code
  1. article {
  2.         border: 1px solid #461200;
  3.         background-color: #d4d4d4;
  4.         margin: 150px 0 0 0;
  5.         background: #d4d4d4 url(imgs/sign-bg.png) center repeat;
  6.         background: url(imgs/sign-border-tl.png) top left no-repeat,
  7.                 url(imgs/sign-border-tr.png) top right no-repeat,
  8.                 url(imgs/sign-border-bl.png) bottom left no-repeat,
  9.                 url(imgs/sign-border-br.png) bottom right no-repeat,
  10.                 url(imgs/sign-bg.png) center repeat;           
  11. }
And we’re done – hope you had fun!

Looking back and planning  

Before you get carried away now, do bear in mind that the support for multiple background images will only work reliably for the latest versions of the popular modern browsers. You'll still need to consider other browsers and older versions and implement appropriate fallback options. Plan carefully how your design will appear in incompatible browsers.
There are quite a few solutions for this problem out there, such as using jQuery or using pseudo-elements (:before/:after) to add additional elements.
 But you might not even have to go down that path as this property will be simply ignored by browsers which don't understand it – the solution could be as simple as defining a different background image entirely, one which could include multiple visuals.
Happy designing and coding!

No comments:

Post a Comment