background-stretch-1-ref.html (630B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 div { 6 background-color: yellow; 7 height: 30px; 8 } 9 .container { 10 width: 100px; 11 } 12 .should-not-stretch { 13 width: 6px; 14 background-color: white; 15 display: inline-block; 16 } 17 .left-spacer { 18 width: 47px; 19 float: left; 20 } 21 .right-spacer { 22 width: 47px; 23 float: right; 24 } 25 body { 26 background-color: black; 27 } 28 </style> 29 </head> 30 <body> 31 <div class="container"> 32 <div class="left-spacer"></div> 33 <div class="should-not-stretch"></div> 34 <div class="right-spacer"></div> 35 </div> 36 </body> 37 </html>