diff --git "a/39 \351\203\255\346\202\246\350\277\216/20231124 \345\260\261\344\270\232\346\246\234.md" "b/39 \351\203\255\346\202\246\350\277\216/20231124 \345\260\261\344\270\232\346\246\234.md" new file mode 100644 index 0000000000000000000000000000000000000000..3227fdbf9aecba6aa4b3acb502da484af9ed78af --- /dev/null +++ "b/39 \351\203\255\346\202\246\350\277\216/20231124 \345\260\261\344\270\232\346\246\234.md" @@ -0,0 +1,233 @@ +## 作业 + +**css部分** + +```css +* { + margin: 0; + padding: 0; + } + + a { + text-decoration: none; + color:#721c24; + } + h1 { + text-align: center; + color:#333; + margin: 20px 0; + + } + table { + margin:0 auto; + width: 800px; + border-collapse: collapse; + color:#004085; + } + th { + padding: 10px; + background: #cfe5ff; + + font-size: 20px; + font-weight: 400; + } + td,th { + border:1px solid #b8daff; + } + td { + padding:10px; + color:#666; + text-align: center; + font-size: 16px; + } + tbody tr { + background: #fff; + } + tbody tr:hover { + background: #e1ecf8; + } + .info { + width: 900px; + margin: 50px auto; + text-align: center; + } + .info input, .info select { + width: 80px; + height: 27px; + outline: none; + border-radius: 5px; + border:1px solid #b8daff; + padding-left: 5px; + box-sizing: border-box; + margin-right: 15px; + } + .info button { + width: 60px; + height: 27px; + background-color: #004085; + outline: none; + border: 0; + color: #fff; + cursor: pointer; + border-radius: 5px; + } + .info .age { + width: 50px; + } +``` + +**html部分** + +```html + + + + + + + + 学生信息管理 + + + + +

新增学员

+
+ 姓名: + 年龄: + 性别: + + 薪资: + 就业城市: + +
+ +

就业榜

+ + + + + + + + + + + + + + + + + +
学号姓名年龄性别薪资就业城市操作
+ + + + + + +``` \ No newline at end of file