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


HTML Marquee width用法及代码示例


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

用法:

<marquees width="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 width=25px 
                 bgcolor="Green"
                 direction="left"
                 loop=""> 
            Left 
        </marquee> 
        <br> 
        <marquee width=50px 
                 bgcolor="Green"
                 direction="right" 
                 loop=""> 
            Right 
        </marquee> 
        <br> 
        <marquee width=75px
                 bgcolor="Green"
                 direction="left"
                 loop=""> 
            Left 
        </marquee> 
        <br> 
        <marquee width=100px
                 bgcolor="Green"
                 direction="right"
                 loop=""> 
            Right 
        </marquee> 
        <br> 
        <marquee width=125px
                 bgcolor="Green"
                 direction="left"
                 loop=""> 
            Left 
        </marquee> 
        <br> 
        <marquee width=150px 
                 bgcolor="Green"
                 direction="right"
                 loop=""> 
            Right 
        </marquee> 
    </div> 
</body> 
  
</html>

输出:

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

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



相关用法


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