Sometimes, we want to move an entire div element up x pixels with CSS.
In this article, how to move an entire div element up x pixels with CSS, we will look at.
How to move an entire div element up x pixels with CSS?
With the help of CSS, we set the margin-top
property, to move an entire div element up x pixels.
For instance, we write
div {
margin-top: -15px;
}
to move the div up 15px by setting margin-top
to -15px.
Conclusion
With the help of CSS, we set the margin-top
property, to move an entire div element up x pixels.