当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML Marquee height用法及代码示例


HTML中的“字幕高度”属性用于设置以像素或百分比值表示的字幕高度。

用法:

<marquee height="px" >

属性值:



  • px:定义选取框的高度值。
  • %:定义选取框的高度值。

例:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>Marquee Tag</title> 
    <style> 
        .main { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green; text-align:center;"> 
      GeeksforGeeks 
  </h1> 
    <div class="main"> 
        <marquee height=25px 
                 bgcolor="Green"
                 direction="left"
                 loop=""> 
            Left 
        </marquee> 
        <marquee height=50px 
                 bgcolor="Green" 
                 direction="right" 
                 loop=""> 
            Right 
        </marquee> 
    </div> 
</body> 
  
</html>

输出:

支持的浏览器:下面列出了HTML Marquee height属性支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • Firefox
  • 苹果Safari
  • Opera



相关用法


注:本文由纯净天空筛选整理自Vijay Sirra大神的英文原创作品 HTML | Marquee height attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。