1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!DOCTYPE html> <html> <style> div { width: 200px; height: 200px; } </style> <div style="position:fixed;"> <div style="transform:translateX(50px);"> <div id="resize" style="background-color:blue; width: 300px"> </div> </div> </div> </html>