Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I have 2 textblocks like this...
text1 somevalue
mytext2 somevalue
mytxt3 someothervalue
If your English knowledge is weak, then why not post some code ? Spreading six words as example in your request will not help us understand how you want to organize them.Dan said:give better details, such as some real code, for example
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml"[/URL] xml:lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<meta http-equiv="content-language" content="en"/>
<title>Test Harness</title>
<style type="text/css">
.ident {
width: 20%;
float: left;
}
.values {
float: left;
}
.thirdmeth p {
clear: both;
float left;
}
.thirdmeth p span {
width: 20%;
float: left;
color: red;}
</style>
<body>
<table>
<tr><td>text 1</td><td>somevalue</td></tr>
<tr><td>text 2</td><td>somevalue</td></tr>
<tr><td>mytext3</td><td>some other value some other value some other
value some other value some other value some other value some other value
value some other value some other value some other value some other value
value some other value some other value some other value some other value
</td></tr>
<tr><td>mytext 4</td><td>somevalue</td></tr>
</table>
<div class="ident">text 1</br>text 2</br>mytext3</div>
<div class="values">somevalue</br>somevalue</br>somevalue</div>
<div class="thirdmeth">
<p><span>text 1</span>somevalue</p>
<p><span>text 2</span>somevalue</p>
<p><span>text 3</span>some other value some other value some other
value some other value some other value some other value some other value
value some other value some other value some other value some other value
value some other value some other value some other value some other value</p>
<p><span>text 4</span>somevalue</p>
</div>
</body>
</html>