top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Is it possible to bring the marquee in top to bottom instead of left to right?

+1 vote
222 views

Hi,I know the usage of marquee.But i need to move the text from top to bottom.It is possible in <marquee> to bring from top to bottom?

posted Aug 28, 2014 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button
YOU CAN CHANGE TEXT TOP TO BOTTOM USE THIS CODE:
 <marquee style="height:100%;position:absolute;" direction="down">
     <h1>My example Marquee From top to bottom</h1>
 </marquee>
you can go this site <a href="https://www.welookups.com">tutorial</a>

1 Answer

0 votes

Using direction attributes you can achieve this.

You can use direction="down" attributes will move from top to bottom

See the Example Code

<!DOCTYPE html>
<html>
<body>
 <marquee style="height:100%;position:absolute;" direction="down">
     <h1>Marquee From top to bottom</h1>
 </marquee>
</body>
</html>

See Reference about marquee -> http://way2tutorial.com/html/html_marquee_tag.php

answer Sep 11, 2014 by Manish Tiwari
Similar Questions
0 votes

Write a c program that rotate elements of an array by the value of configured number "n".
For example:
Input array[ ] = { 2, 3, 5, 6, 8, 9}
value of n = 2
Output array[] = { 5, 6, 8, 9, 2, 3}
I am looking for efficient program.

+2 votes

Return a version of the given string, where for every star (*) in string the star and thr chars immediately to its left and right are gone. So "ab*cd" yields "ad" and "ad**cd" also yields "ad".

+1 vote

Print an NxM matrix with nw-se diagonals starting at bottom left corner.

Input

1  2  3  4
5  6  7  8
9 10 11 12

Output

9
5 10
1 6 11
2 7 12
3 8
4
...