Na stronie mam 3 kontenery
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5. <link href="css/main.css" rel="stylesheet" type="text/css" />
  6. </head>
  7. <body>
  8. <div id="header">
  9. <div id="inner_header">
  10.  
  11. </div>
  12. </div>
  13.  
  14. <div id="body">
  15. <div id="inner_body">
  16.  
  17. </div>
  18. </div>
  19.  
  20. <div id="footer">
  21. <div id="inner_footer">
  22.  
  23. </div>
  24. </div>
  25. </body>
  26. </html>

  1. html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset,form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {
  2. text-decoration:none;margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;outline: none;
  3. }
  4.  
  5. #header{
  6. height:200px;
  7. background:url('../images/bg.jpg') repeat-x;
  8. }
  9. #inner_header,#inner_body,#inner_footer{
  10. border:1px solid #000;
  11. width:1000px;
  12. margin:auto;
  13. height:100px;
  14. }
  15. #body{
  16. margin:100px 0;
  17. height:200px;
  18. background:url('../images/bg.jpg') repeat-x;
  19. }
  20.  
  21. #footer{
  22. height:200px;
  23. background:url('../images/bg.jpg') repeat-x;

Które mają mieć tło na całą szerokość strony, każdy z nich ma wewnętrzny kontener który jest wyśrodkowany.
Wszystko wygląda dobrze dopóki przeglądarka nie zostanie zwężona aż pojawi się pasek przewijania w poziomie, wtedy po prawej stronie obrazki z tła są ucinane, jak sobie z tym poradzić?

Przykład online: http://przyklady.com

Czy jest jakaś inna możliwość niż ustawienie trzymającym kontenerom min-width?