将body的内外边距修改为0

This commit is contained in:
Cool 2023-11-20 20:15:17 +08:00
parent c08d45149c
commit 35463b2997
1 changed files with 22 additions and 14 deletions

View File

@ -1,17 +1,25 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang=""> <html lang="">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1.0"> <meta name="viewport" content="width=device-width,initial-scale=1.0">
<link rel="icon" href="<%= BASE_URL %>xiaoxi.ico"> <link rel="icon" href="<%= BASE_URL %>xiaoxi.ico">
<title>ChatABC</title> <title>ChatABC</title>
</head> </head>
<body> <body>
<noscript> <noscript>
<strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript> </noscript>
<div id="app"></div> <div id="app"></div>
<!-- built files will be auto injected --> <!-- built files will be auto injected -->
</body> </body>
<style>
body{
margin: 0;
padding: 0;
background-color: rgb(245, 245, 245) ;
}
</style>
</html> </html>