建立一個表格,使用類選擇器來美化表格樣式?
阿新 • • 發佈:2019-01-05
建立一個表格,使用類選擇器來美化表格樣式:
程式碼如下:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>建立一個表格,使用類選擇器美化</title> </head> <style> /*border-style 設定邊框的線是實線 border-color 設定邊框顏色*/ a:link{text-decoration: none;font-size: 20px;} .table{background: cyan; border-style: solid;border=1;border-color:pink;font-family: "楷體";font-size: medium;} .fieldset{width:500px; height: 80; text-align: center; font-size:25px;font-family: "微軟雅黑";} </style> <body> <a href="http://www.baidu.com" target="_blank">百度一下,你就知道</a> <fieldset class="fieldset"> <legend>新使用者註冊:</legend> <table align="center" class="table" border= "1"> <thead align="center">填寫個人資訊</thead> <tbody align="center"> <tr> <th>姓名</th> <th><input type="text" name="user"/></th> </tr> <tr> <th>密碼</th> <th><input type="password" name="ps"/></th> </tr> <tr> <th>性別</th> <th><input type="radio" name="sex" value="男" checked="checked"/>男 <input type="radio" name="sex"value="女"/>女 </th> </tr> <tr> <th>頭像</th> <th><input type="file" value="上傳頭像"/> </th> </tr> <tr> <th>愛好</th> <th><input type="checkbox" name="hobby" value="籃球" />籃球 <input type="checkbox" name="hobby" value="跑步"/>跑步 <input type="checkbox" name="hobby" value="游泳"/>游泳 <input type="checkbox" name="hobby" value="煲劇"/>煲劇 <input type="checkbox" name="hobby" value="其他" checked="checked"/>其他 </th> </tr> <tr> <th>城市</th> <th><select> <option value="1" selected="selected">請選擇城市?</option> <option value="2">北京</option> <option value="2">上海</option> <option value="2">南京</option> <option value="2">天津</option> <option value="2">四川</option> </select> </th> </tr> <tr> <th>自我介紹</th> <th><textarea>請填寫自我介紹,不超過20個字! </textarea> </th> </tr> </tr> <tr> <th colspan="2"> <input type="submit" value="提交" /> <input type="reset" value="重置" /> </th> </th> </tr></tbody> </table> </fieldset> </body> </html>