用css样式美化上面的代码
时间: 2023-12-10 16:05:33 浏览: 70
网页代码美化
好的,以下是一个简单的 CSS 样式示例,可以用于美化上述代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>登录</title>
<style>
body {
background-color: #f1f1f1;
font-family: Arial, sans-serif;
font-size: 16px;
}
form {
background-color: #fff;
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
max-width: 400px;
margin: 0 auto;
}
input[type="text"],
input[type="password"] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
border-radius: 4px;
}
input[type="submit"] {
background-color: #4CAF50;
color: #fff;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<form action="savePerson.do" method="post">
<label for="username">用户名:</label>
<input type="text" id="username" name="username">
<br>
<label for="password">密码:</label>
<input type="password" id="password" name="password">
<br>
<input type="submit" value="登录">
</form>
</body>
</html>
```
这段 CSS 代码会使页面的表单样式更加美观,包括背景、边框、输入框和提交按钮等元素。请注意,这只是一个简单的样式示例,您可以根据自己的需要进行修改和优化。
阅读全文