HTML标签列表、表格和iframe

有序列表,无序列表

Ul无序列表标签

1

2

3

4

5

6ul

H3ul无序列表/h3

李胶囊苍苍、白露为霜/李

李少尉伊拉克,水那边/李

李娜太可爱了!/li

/ulol顺序列表标签

1

2

3

4

5

6ol

H3ol顺序列表/h3

Li胶囊,白露未干/li

李少尉在伊拉克,水美易/里。

李,我这么有魅力!/li

/olPS:列表之间可以互相嵌套,互相搭配工作也不累。

列表

  • dl标签

    1 2 3 4 5 6 7 8 9 10 11<dl> <h3>dl列表</h3> <dt>HTML</dt> <dd>超文本标记语言</dd> <dt>CSS</dt> <dd>层叠样式表</dd> <dt>Javascript</dt> <dd>脚本语言</dd> <dt>JAVA</dt> <dd>Coffice</dd> </dl>

    dt:定义列表中的项目

    dd:描述列表中的项目

表格

表格描述
< table >定义表格
< caption >定义表格标题。
< th >定义表格的表头。
< tr >定义表格的行。
< td >定义表格单元。
< thead >定义表格的页眉。
< tbody >定义表格的主体。
< tfoot >定义表格的页脚。
1 2 3 4 5 6 7 8 9 10 11<!-- 垂直的表头 --> <table border="1" style="border-collapse: collapse;"> <tr> <th> name </th> <th> Mr.老司机寻常 </th> </tr> <tr> <th> size </th> <th> 18 </th> </tr> </table>
1 2 3 4 5 6 7 8 9 10 11 12 13<!-- 横向的表头 --> <table border="1" style="border-collapse: collapse;"> <tr> <th> name </th> <th> age </th> <th> mail </th> </tr> <tr> <td> Mr.xq </td> <td> 18 </td> <td> 2039971852@qq.com </td> </tr> </table>

iframe框架

1 2 3<!-- 写法 --> <iframe src="Url"></iframe> <!-- Url指的是iframe显示的内容地址 -->
属性描述
widthpx/%规定 iframe 的宽度。
heightpx/%规定 iframe 的高度。
frameborder1/0规定是否显示框架周围的边框。
scrollingyes/no/auto规定是否在 iframe 中显示滚动条。
srcURL规定在 iframe 中显示的文档的 URL。
seamlessseamless规定在 < iframe > 中显示的页面的 HTML 内容。

ps:内嵌网页,加载更多,付款成功(不想跳转页面的话)

1.《同页面iframe如何滚动条 iframe出现滚动条》援引自互联网,旨在传递更多网络信息知识,仅代表作者本人观点,与本网站无关,侵删请联系页脚下方联系方式。

2.《同页面iframe如何滚动条 iframe出现滚动条》仅供读者参考,本网站未对该内容进行证实,对其原创性、真实性、完整性、及时性不作任何保证。

3.文章转载时请保留本站内容来源地址,https://www.lu-xu.com/keji/3212663.html