<!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8" /> <title>document</title> <style> .box { position: fixed; background: red; width: 100px; height: 100px; left: 0; top: 0; right: 0; bottom: 0; margin: auto; } </style> </head> <body> <div class="box"></div> </body></html>


