本帖最后由 邢凯 于 2014-8-4 17:32 编辑
在HTML中怎么缩进 我的代码是这样的- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title></title>
- </head>
- 要怎么样才能和视频上的老师操作的一样呢
- <body>
- <table>
- <tr><td><label for="username">用户名:</label></td><td><input type="text" id="username" /></td></tr>
- <tr><td><label for="province">省份:</label></td><td>
- <select id="province">
- <option>北京</option>
- <option>杭州</option>
- <option>上海</option>
- </select>
- </td></tr>
- <tr><td colspan="2">
- <fieldset>
- <legend>爱好</legend>
- <input type="checkbox" id="ds" /><label for="ds">登山</label>
- </fieldset>
- </td></tr>
- </table>
- </body>
- </html>
复制代码 |