摘要:
标签名称 功能描述 <input type="text"/> 单行文本 <input type="password"/> 密码域 <input type="checkbox"/> 多选按钮 <input type="radio"/> 单选按钮 <input type="submit"/> 提交按钮 阅读全文
摘要:
语法: traceroute [-d] [-h maximum_hops] [-j host-list] [-w timeout] [-R] [-S srcaddr] [-4] [-6] target_name 选项: -d 不将地址解析成主机名。 -h maximum_hops 搜索目标的最大跃点 阅读全文
摘要:
系 统 : Linux/ubuntu 安装命令 : apt install lrzsz 上传命令:rz 下载命令:sz + 文件名 阅读全文
摘要:
特殊符号 说明 代码 空格 " 双引号(英文) " ‘ 左单引号 ‘ ’ 右单引号 ’ × 乘号 × ÷ 除号 ÷ > 大于号 > < 小于号 < & “与”符号 & — 长破折号 — | 竖线 阅读全文
摘要:
代码: <h4>合并列colspan:</h4> <table border="1"> <!--第1行--> <tr> <td colspan="2">xxxx学习网精品教程</td> </tr> <!--第2行--> <tr> <td>HTML教程</td> <td>CSS教程</td> </tr 阅读全文
摘要:
<h4>合并行rowspan:</h4> <table border="1"> <!--第1行--> <tr> <td>姓名:</td> <td>小明</td> </tr> <!--第2行--> <tr> <td rowspan="">喜欢水果:</td> <td>苹果</td> </tr> <!- 阅读全文
摘要:
<h4>表头:</h4> <table border="1"> <tr> <th>姓名</th> <th>身份证</th> <th>电话</th> </tr> <tr> <td>王五</td> <td>00000000000000</td> <td>11111111111</td> </tr> </ 阅读全文
摘要:
<table> <tr> <td>单元格1</td> <td>单元格2</td> </tr> <tr> <td>单元格3</td> <td>单元格4</td> </tr> </table> 阅读全文