This tutorial shows you how to add /display a text between two DIV tags, like in this example:
position:relative;
, then, the two DIVs must have set float
property, or display:inline-block;
.float:left;
and float:right;
).
The code: <br style='clear:both;'> is used to annulate the effect of the 'float' property.
<style> #divpt { position:relative; width:99%; height:99%; border:2px solid #010208; padding:4px 5px; text-align:center; } #div1 { margin:1px 3px; background-color:#b8c8fe; float:left; width:25%; border:3px dotted blue; } #div2 { margin:1px 3px; background-color:#b8efc8; float:right; width:25%; border:3px dotted green; } #divpt h3 { margin:1px auto; padding:1px 5px; } </style> <h4>Example text between 2 Divs</h4> <div id='divpt' class='cls'> <div id='div1'>Content added in DIV1<br/>Row 2 ...</div> <div id='div2'>Content of DIV2<br/>Row 2 ...</div> <h3>Text displayed in the middle, between DIV1 and DIV2</h3> <br style='clear:both;'> </div>
display:inline-block;
applied to that class):
<style> #divpt { position:relative; width:99%; height:99%; border:2px solid black; padding:4px 5px; text-align:center; } #divpt .cls { display:inline-block; width:31%; margin:2px auto; border:2px dotted blue; padding:1px 4px; </style> <h4>Example text between two Divs</h4> <div id='divpt'> <div class='cls'>Content added in DIV1<br/>Row 2 ...</div> <h3 class='cls'>Text displayed in the middle, between DIV1 and DIV2</h3> <div class='cls'>Content of DIV2<br/>Row 2 ...</div> </div>
<table><tr> <th>Title 1</th> <th>Title 2</th> </tr></table>
.some_class { line-height: 150%; }
document.getElementById("id_button").onclick = function(){ window.open("http://coursesweb.net/"); }
$ar_dir = scandir("dir_name"); var_export($ar_dir);