Java程序員用學(xué)前端么?java開發(fā)所需的前端技術(shù)全教程(HTML/CSS/j

P36學(xué)生表HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>學(xué)生表</title> </head> <body> <div> <div class="title">學(xué)生列表</div> <div class="thead"> <div class="row bold"> <div class="col">編號(hào)</div> <div class="col">姓名</div> <div class="col">性別</div> <div class="col">年齡</div> </div> </div> <div class="tbody"> <div class="row"> </div> </div> </div> <style> html,body{ font-family: 華文行楷; font-size: 20px; } .title{ margin-bottom: 10px; font-size: 30px; color: #333; text-align: center; } .row{ background-color: #fff; display: flex; justify-content: center; } .col{ border: 1px solid #f0f0f0; width: 15%; height: 35px; text-align: center; line-height: 35px; } </style> </body> </html>
標(biāo)簽: