1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style type="text/css"> #container { position: fixed; top: 0; bottom: 0; width: 100%; height: 100%; background: blue; } #test { width: 400px; height: 400px; position: absolute; } </style> </head> <body> <div id="container"></div> </body> </html>