1、以表格的方式展示产品月销量,效果如题图1所示。表格有三列,分别为ID、产品名称和销量。表格最后一行统计出产品月销量的合计数值。
html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>表格方式展示产品月销量</title> </head> <style> table{ border:1px #333 solid; width: 500px; } table caption{ font: 30px bolder; line-height:36px; padding-bottom: 10px; } tr{ text-align: center; } tbody tr{ background-color: #E6E6FA; } thead tr,tfoot tr{ background-color: #D8BFD8; } td,th{ padding:5px; border:2px solid #888; } tbody tr td:nth-child(3),tfoot tr td:nth-child(2){ text-align: right; } tfoot tr td:nth-child(1){ text-align: left; } .record{ border-collapse: collapse; } .c{ margin-left: 25%; } </style> <body class="c"> <table class="record" cellspacing="2" cellpadding="10" bgcolor="#FFF0F5"> <caption>产品月销量</caption> <thead> <tr> <th>ID</th><th>产品名称</th><th>销量</th> </tr> </thead> <tbody> <tr><td>2021090901</td><td>马克杯</td><td>5000瓶</td></tr> <tr><td>2021090901</td><td>啤酒杯</td><td>5200瓶</td></tr> <tr><td>2021090901</td><td>搪瓷杯</td><td>3500瓶</td></tr> </tbody> <tfoot> <tr><td colspan="2">合计</td><td>13700瓶</td></tr> </tfoot> </body> </html>
2、现在网购已成为人们重要的购物方式之一,收货人信息是网购的必填模块,而收获人信息的填写离不开表单。利用本章所学知识,实现如题图2所示的效果:输入框获取焦点之后,边框变为蓝色。
html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>收获人信息</title> </head> <style> input[type='submit'] { background-color:rgb(135, 135, 150); border: none; color: #ffffff; padding: 10px 10px; font-size: 16px; border-radius: 5px; } input[type='submit']:hover, input[type='submit']:hover { background-color: blue ; cursor: pointer; } </style> <body> <form action="" method="post"> <p> 收货人<br> <input type="text" name="name" size="20"> </p> <p> 手机号码<br> <input type="text" name="tellphone" size="20"> </p> <p> 所在地区<br> <input type="text" name="address" size="20"> </p> 详细地址<br> <textarea name="textarea" id="textarea" cols="22" rows="7"></textarea> <p> 标签<br> <input type="radio" name="address" id="home" value="home " checked>家 <input type="radio" name="address" id="business" value="business">公司 <input type="radio" name="address" id="school" value="school" >学校 </p> <p> 设置为默认地址<input type="checkbox" name="indress"> </p> <input type="submit" value="提交" > <el-table-column type="selection" width="20"></el-table-column> </form> </body> </html>