html网页文本框居中
时间: 2023-12-09 18:36:21 浏览: 189
通过css控制HTML文本框中的文字垂直居中
以下是一种在HTML中实现文本框垂直居中的方法:
```html
<!DOCTYPE html>
<html>
<head>
<style>
.container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.textbox {
height: 50px;
width: 200px;
font-size: 20px;
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<input type="text" class="textbox" placeholder="输入文本">
</div>
</body>
</html>
```
在这个例子中,我们使用了flex布局来实现文本框的垂直居中。具体来说,我们将文本框所在的容器设置为flex布局,并使用align-items和justify-content属性来分别控制文本框在垂直和水平方向上的居中。同时,我们还设置了容器的高度为100vh,以确保文本框始终位于页面的中央位置。
阅读全文