<%-- Created by IntelliJ IDEA. User: 绿波亭 Date: 2023/5/29 Time: 14:51 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> <!DOCTYPE html> <html> <head> <title> 教师功能页 </title> <style> body{ background-color: #f2f2f2; font-family: Arial, sans-serif; } .container{ max-width: 800px; margin: 0 auto; text-align: center; padding: 20px 0; } h1{ font-size: 36px; color: #333; margin-bottom: 20px; } table{ font-family: Arial, sans-serif; border-collapse: collapse; width: 100%; margin-bottom: 20px; } td, th{ border: 1px solid #ddd; text-align: center; padding: 8px; } th{ background-color: #4caf50; color: white; } input[type="text"]{ width: 100%; padding: 12px 20px; margin: 8px 0; display: inline-block; border: 1px solid #ccc; border-radius: 4px; box-sizing: border-box; } label{ display: block; text-align: left; font-size: 18px; margin-bottom: 5px; color: #333; } input[type="submit"]{ background-color: #4caf50; color: white; font-size: 18px; padding: 12px 20px; border: none; border-radius: 4px; cursor: pointer; } input[type="submit"]:hover{ background-color: #37a047; } </style> </head> <body> <div class="container"> <h1> 教师功能页 </h1> <h2>考试成绩修改</h2> <table> <tr> <th>考试科目</th> <th>考试日期</th> <th>考试成绩</th> <th>操作</th> </tr> <tr> <td>语文</td> <td>2022-06-01</td> <td>80</td> <td><a href="#">修改</a></td> </tr> <tr> <td>数学</td> <td>2022-06-02</td> <td>90</td> <td><a href="#">修改</a></td> </tr> <tr> <td>物理</td> <td>2022-06-03</td> <td>85</td> <td><a href="#">修改</a></td> </tr> </table> </div> </body> </html>
标签:color,margin,update,text,20px,font,border,teacher From: https://www.cnblogs.com/cocotun/p/17452922.html