0% found this document useful (0 votes)
19 views1 page

Tested CSS

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views1 page

Tested CSS

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

#parent {

position: relative;
width: 400px;
height: 100vh;
overflow: hidden;
}
.message {
position:absolute;
left: 0;
bottom: -120px;
height: 120px;
width: 120px;
background-color: orange;
color: white;
line-height: 115px;
text-align: center;
font-family: Arial, sans-serif;
font-weight: bold;
border-radius: 60px;
animation: move 6s infinite linear;
}
.message:nth-child(2){
left:120px;
animation-delay: 2s;
}
.message:nth-child(3){
left:240px;
animation-delay: 4s;
}
@keyframes move {
0% {
bottom: -120px;
}
100% {
bottom: 100%;
}
}

*********************************

<div id="parent">
<div class="message">Bob</div>
<div class="message">Alice</div>
<div class="message">Eve</div>
</div>

You might also like