marquee is not a new HTML5 tag, it has been deprecated and developers need to avoid using it. Marquee is a non-standard HTML tag used to create scrolling text or images that scroll horizontally or vertically down a web page.
The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.
Properties
behavior
Set how the text scrolls within the marquee element. Optional values are scroll, slide and alternate. If no value is specified, the default value is scroll.
bgcolor
Set the background color by color name or hexadecimal value.
direction
Set the direction of text scrolling in marquee. Optional values are left, right, up and down. If no value is specified, the default value is left.
height
Sets the height in pixels or as a percentage value.
hspace
Set horizontal margins.
loop
Set the number of times marquee scrolls. If no value is specified, the default value is −1, indicating that the marquee will scroll continuously.
scrollamount
Set the length of each scroll (in pixels) . The default value is 6.
scrolldelay
Set the time interval (in milliseconds) between each scroll. The default value is 85. Note that unless a truespeed value is specified, any value less than 60 will be ignored and 60 will be used instead.
truespeed
By default, scrolldelay values less than 60 are ignored. If truespeed is present, those values are not ignored.
vspace
Sets the vertical margin as a pixel or percentage value.
width
Sets the width in pixels or as a percentage value.
##Example of using HTML <!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<style>
marquee{
font-size: 30px;
font-weight: 800;
color: #8ebf42;
font-family: sans-serif;
}
</style>
</head>
<body>
<marquee>A scrolling text created with HTML Marquee element.</marquee>
</body>
</html>
##Related recommendations:《
html video tutorialThe above is the detailed content of Is marquee a new tag for html5?. For more information, please follow other related articles on the PHP Chinese website!