zoukankan      html  css  js  c++  java
  • 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>
  • 相关阅读:
    Django(一)
    web 框架
    图片
    day16
    day 15
    day14 HTML CSS
    day12
    day11
    python IO多路复用,初识多线程
    python socket
  • 原文地址:https://www.cnblogs.com/sunhao1987/p/9189408.html
Copyright © 2011-2022 走看看