text position html code example
Example 1: center text in css
.class {
text-align: center;
}
Example 2: how to center align text in html
you just need to add this line of code in your tag(<p>; h1, h2, td etc):
<p align="center">sample text<p/>
Example 3: CODE TO START TEXT FROM RIGHT IN HTML
<html dir="rtl" lang="X">
Example 4: 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 5: html css position
.class{ position: attribute ; }