css输入框和按钮居中布局
时间: 2023-10-06 13:06:44 浏览: 186
可以使用flex布局,把输入框和按钮放在一个容器里面,然后设置容器的display为flex,并且设置justify-content和align-items属性为center,就可以实现水平和垂直居中布局。
HTML代码:
```
<div class="container">
<input type="text" placeholder="请输入内容">
<button>提交</button>
</div>
```
CSS代码:
```
.container {
display: flex;
justify-content: center;
align-items: center;
}
input[type="text"],
button {
padding: 10px;
font-size: 16px;
border: none;
}
button {
background-color: #007bff;
color: #fff;
}
```
相关问题
前端代码 写一个登录的页面。用户名:输入框、密码:输入框居中对齐,布局合理。包括记住密码勾选框,登录按钮为浅色蓝色
以下代码实现了你所需的登录页面布局,其中用户名和密码输入框都居中对齐,布局合理,记住密码勾选框和登录按钮颜色为浅色蓝色。
```html
<!DOCTYPE html>
<html>
<head>
<title>Login Page</title>
<style type="text/css">
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
}
.container {
width: 400px;
margin: 0 auto;
margin-top: 100px;
border: 1px solid #ccc;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 5px #ccc;
}
h1 {
text-align: center;
margin-bottom: 30px;
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 10px;
border-radius: 5px;
border: 1px solid #ccc;
box-sizing: border-box;
margin-bottom: 20px;
font-size: 16px;
text-align: center;
}
.remember-me {
margin-bottom: 20px;
}
.btn-login {
display: block;
width: 100%;
padding: 10px;
background-color: #b3d9ff;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
.btn-login:hover {
background-color: #99c2ff;
}
</style>
</head>
<body>
<div class="container">
<h1>Login</h1>
<form>
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="Enter your username">
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="Enter your password">
<div class="remember-me">
<input type="checkbox" id="remember" name="remember">
<label for="remember">Remember me</label>
</div>
<button type="submit" class="btn-login">Login</button>
</form>
</div>
</body>
</html>
```
你可以在浏览器中打开该文件,查看实际效果。
quasar 输入框和按钮并列
要将 Quasar 输入框和按钮并列,你可以使用 Flexbox 布局。以下是一个简单的示例代码:
```
<div style="display: flex; align-items: center;">
<q-input placeholder="输入框"></q-input>
<q-btn label="按钮"></q-btn>
</div>
```
在上面的代码中,我们使用了 `display: flex` 将父元素设置为 Flex 容器,然后使用 `align-items: center` 将子元素垂直居中。这将使输入框和按钮在同一行上水平排列。
你可以根据需要调整 CSS 样式和 Flexbox 属性来实现更具体的布局。
阅读全文