1042104-1-ref.html (415B)
1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <style> 5 #container { 6 height: 500px; 7 width: 500px; 8 position: relative; 9 overflow: hidden; 10 } 11 #panel { 12 position:absolute; 13 height: 100%; 14 width: 100%; 15 top: 0; 16 left: 0; 17 transform: translateX(0); 18 background-color: yellow; 19 } 20 </style> 21 </head> 22 <body> 23 <div id="container"> 24 <div id="panel"> 25 <div style="width:300px; height:50px; background:blue;"></div> 26 </div> 27 </div>