positioning images in css code example
Example 1: how to change image position in css
.image{
position: absolute;
right:300px;
}
Example 2: css position
h2.pos_left {
position: relative;
left: -20px;
}
h2.pos_right {
position: relative;
left: 20px;
}