css move my text down code example
Example 1: how to move text down in css
p {
padding-top: 2em;
}
Example 2: how to change image position in css
.image{
position: absolute;
right:300px;
}
Example 3: how to move an image up in css
.image{
position: relative;
top: -125px;
}