<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>车辆管理</title> <style> </style> </head> <body> <h1>车辆管理</h1> <!-- 添加车辆表单 --> <h2>添加车辆</h2> <form id="addVehicleForm"> <label for="make">品牌:</label> <input type="text" id="make" name="make" required><br> <label for="model">型号:</label> <input type="text" id="model" name="model" required><br> <label for="year">年份:</label> <input type="text" id="year" name="year" required><br> <button type="submit">添加</button> </form> <!-- 车辆列表 --> <h2>车辆列表</h2> <table id="vehicleTable"> <thead> <tr> <th>品牌</th> <th>型号</th> <th>年份</th> <th>操作</th> </tr> </thead> <tbody id="vehicleTableBody"> <!-- 这里通过JavaScript动态添加表格行 --> </tbody> </table> </body> </html>加个样式
时间: 2023-08-14 10:33:33 浏览: 133
-doctype-html-html-lang-en-dir-ltr-head-meta-name:
可以在 `<style>` 标签中添加以下样式:
```css
body {
font-family: Arial, sans-serif;
}
h1, h2 {
text-align: center;
}
form label {
display: inline-block;
width: 100px;
margin-bottom: 10px;
}
form input[type="text"] {
width: 200px;
padding: 5px;
border-radius: 5px;
border: 1px solid #ccc;
}
form button[type="submit"] {
margin-top: 10px;
padding: 5px 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 10px;
text-align: center;
border: 1px solid #ddd;
}
th {
background-color: #4CAF50;
color: white;
}
```
这个样式可以使页面更加美观,使表单和表格更加易于阅读和操作。
阅读全文