Kai*_*Kai -1 html javascript php python html5
如何在Html或javascript代码的帮助下将结果显示在页面中间.正如你们在搜索页面中看到谷歌一样.我把我的结果放在顶级中心,但我想在中间像谷歌页面.我的Html代码是:
<html>
<head>
<title> Search</title>
<body>
<center>Search: <input type="Text" Name="">
<input type="Submit" value="Go"></center>
</body>
</html
Run Code Online (Sandbox Code Playgroud)
<html>
<head></head>
<body style="width: 100%; height: 100%;">
<div style="top: 50%; left: 50%; position: absolute;">
<div>Centered text</div>
</div>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)