使用HTML制作一个自动适应移动端页面剧中的登陆界面,代码示例
时间: 2024-10-25 21:04:06 浏览: 19
JS 打印界面的CSS居中代码适用所有浏览器
创建一个自动适应移动端的登录界面,可以使用HTML、CSS和响应式设计技术,如Bootstrap或者自定义媒体查询。这里是一个简单的HTML和CSS代码示例:
```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>移动适配登录界面</title>
<style>
body {
font-family: Arial, sans-serif;
}
.container {
width: 100%;
max-width: 450px;
margin: auto;
padding: 20px;
box-sizing: border-box;
}
@media (max-width: 600px) {
/* 移动端样式 */
.container {
padding: 10px;
}
}
form {
display: flex;
flex-direction: column;
}
input[type="text"], input[type="password"] {
margin-bottom: 10px;
padding: 10px;
width: 100%;
border: 1px solid #ccc;
}
button {
background-color: #007BFF;
color: white;
padding: 10px 20px;
border: none;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h2>登录</h2>
<form>
<input type="text" placeholder="用户名" required>
<input type="password" placeholder="密码" required>
<button type="submit">登录</button>
</form>
</div>
</body>
</html>
```
这个例子中,`.container` 的宽度设置为 `max-width: 450px`,并在媒体查询中调整了小于600px设备的样式。表单元素通过 CSS 简化布局,并设置了合理的输入和按钮样式。
阅读全文