How can we move div Down?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How can we move div Down??

28th Apr 2017, 5:17 AM
Bibek Pariyar
Bibek Pariyar - avatar
3 Answers
+ 6
explain yourself
28th Apr 2017, 5:27 AM
chris
chris - avatar
+ 5
With css... <div id="myDiv">my div content</div> ... statically: #myDiv { transform:translateY(10px); } ... animated: #myDiv { -webkit-animation:anim 2s alternate infinite; animation:anim 2s alternate infinite; } @-webkit-keyframes anim { from { transform:translateY(0px); } to { transform:translateY(10px); } } @keyframes anim { from { transform:translateY(0px); } to { transform:translateY(10px); } } You can obviously use css transition to animate it ^^
28th Apr 2017, 5:48 AM
visph
visph - avatar
+ 2
can you please explain what exactly you want to do??
28th Apr 2017, 5:20 AM
MrBM
MrBM - avatar