一个有三个按钮居中的html页面 并且这三个按钮分别可以跳转一个空白的页面的html页面代码
时间: 2024-05-12 13:13:07 浏览: 127
以下是一个简单的 HTML 页面,其中包含三个居中的按钮,每个按钮都可以跳转到一个空白页面:
```html
<!DOCTYPE html>
<html>
<head>
<title>三个按钮页面</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0;
}
button {
padding: 10px 20px;
font-size: 20px;
margin: 10px;
border-radius: 5px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #3e8e41;
}
</style>
</head>
<body>
<div>
<button onclick="window.open('about:blank', '_blank')">按钮1</button>
<button onclick="window.open('about:blank', '_blank')">按钮2</button>
<button onclick="window.open('about:blank', '_blank')">按钮3</button>
</div>
</body>
</html>
```
在这个代码中,`display: flex;` 和 `justify-content: center;` 和 `align-items: center;` 属性使页面内容居中显示。按钮样式和动作使用 CSS 和 JavaScript 来实现。当按钮被点击时,`onclick` 属性调用 JavaScript 函数 `window.open()` 来打开一个新页面。`about:blank` 参数告诉浏览器打开一个空白页面,`_blank` 参数告诉浏览器在新窗口中打开页面。
阅读全文