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
相關用法
- HTML Marquee scrollamount用法及代碼示例
- HTML Marquee direction用法及代碼示例
- HTML Marquee scrolldelay用法及代碼示例
- HTML Marquee behavior用法及代碼示例
- HTML Marquee vspace用法及代碼示例
- HTML Marquee width用法及代碼示例
- HTML Marquee hspace用法及代碼示例
- HTML Marquee truespeed用法及代碼示例
- HTML Marquee bgcolor用法及代碼示例
- HTML Marquee loop用法及代碼示例
- HTML <td> height屬性用法及代碼示例
- HTML <img> height屬性用法及代碼示例
- HTML height屬性用法及代碼示例
- HTML <th> height屬性用法及代碼示例
注:本文由純淨天空篩選整理自Vijay Sirra大神的英文原創作品 HTML | Marquee height attribute。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。