5.2基础标签学习

其他html标签
|-框架标签
|--1、<frameset></frameset>
|----html文档中不能有<body></body>
|----cols 横向排列  rows 纵向排列 300,*
|----frameborder  框架的边框
|----src 引入页面的地址

<frameset rows="300,*"frameborder="0">
<frame src="../../xiaomi/zhuye.html"/>
<frame src="../0428/zuoye0428.html"/>
</frameset>

|--2、<iframe></iframe>
|--src 引入页面地址
|--width宽 height高 scrolling是否显示滚动条
|----frameborder  框架的边框

<iframe src="https://map.baidu.com/" height="300" width="300px" scrolling="auto" frameborder="no"></iframe>

|-其他标签
|--1、<marquee></marquee>实现文字与图片的滚动
|----direction 实现往不同方向滚动
|----默认高度是200 宽度是浏览器的宽度

<marquee direction="down" height="500">
  <img src="../../xiaomi/xiaoguanggao.png"/>
</marquee>

猜你喜欢

转载自www.cnblogs.com/sunhao1987/p/9189408.html
5.2
今日推荐