5.27号今日总结

今日份承接昨天代码:

error.jsp

<%@ page language="java" isErrorPage="true" pageEncoding="utf-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
    <title>error page</title>
</head>
<body>
错误信息为:<br/>
<%=exception.getMessage()%><br>
<%=exception.toString()%>
</body>
</html>

style.css

@charset "utf-8";
body{
    background-image: url("stdu.jpg");
    background-size: cover;
    text-align: center;
}
table {
    width: 400px;
    border: 1px solid #696969;
    border-collapse: collapse;
    margin:0 auto;
}

th {
    border: 1px solid #696969;
    background-color: #5f80c9;
}
td {
    text-align: center;
    border: 1px solid ;
    height: 50px;
    opacity:0.8;
    background-color: #fff;
}
input {
    font-size: 20px;
}
a {
    color: #11F7F7;
    text-decoration: none;
    font-size: 18px;
}

a:hover {
    color: #F79011;
    text-decoration: underline;
    font-size: 18px;
}

 

posted @ 2023-05-27 21:22  庞司令  阅读(14)  评论(0)    收藏  举报