vue搭建前端页面文本框如何居中
时间: 2023-10-27 18:02:59 浏览: 128
要使文本框居中,可以使用CSS中的flex布局。将文本框所在的容器设置为display:flex,并设置justify-content:center和align-items:center,即可使文本框在水平和垂直方向上居中对齐。
例如,在Vue中可以这样设置文本框居中:
```html
<template>
<div class="container">
<input type="text" class="textbox">
</div>
</template>
<style>
.container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.textbox {
width: 200px;
height: 40px;
}
</style>
```
阅读全文