JSFiddle - React, Tailwind, and code Playground

by Mohamad Shiralizadeh

HTML

<div class="Top"></div>
<marquee direction="up">
    test<br>
    test<br>
    test<br>
    test<br>
    test<br>
</marquee>
<div class="Bottom"></div>

CSS

body {
    height: 500px;
}
.Top {
    position: absolute;
    background-image: url(http://afkarco.ir/images/Bottom.png);
    top: 0;
    right: 0;
    width: 100%;
    height: 100px;
    z-index: 10;
}

marquee {
    margin: 100px 0;
    height: 500px;
}

.Bottom {
    position: absolute;
    background-image: url(http://afkarco.ir/images/Top.png);
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100px;
    z-index: 10;
}