set text position css code example
Example 1: center text in css
.class {
text-align: center;
}
Example 2: how change the text position
type text-align: center;
you can make it to right and to the left
Example 3: css position
h2.pos_left {
position: relative;
left: -20px;
}
h2.pos_right {
position: relative;
left: 20px;
}