text positioning css code example
Example 1: how to push text to the right css
padding-left: 3px;
Example 2: html how to move element to the bottom right of page
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Test</title>
<style>
#foo {
position: fixed;
bottom: 0;
right: 0;
}
</style>
</head>
<body>
<div id="foo">Hello World</div>
</body>
</html>
Example 3: how change the text position
type text-align: center;
you can make it to right and to the left
Example 4: html css position
.class{ position: attribute ; }