I wanted to ask a question about, how I can bootstrap a html tag p
when the browser is being dragged horizontally left/right. I want my text to be following the parents size.. I have an example code in php here..
my code :
<?php
include('db.php');
$r = mysql_query("SELECT * FROM tbl_list");
if($r)
{
echo "<div class='ui-content' data-filter='true'>";
while($row=mysql_fetch_array($r))
{
echo "<div data-role='collapsible'>";
echo "<h1>".$row['rec_name']."</h1>";
echo "</br>";
echo "<p class='fix' align='justify'>".$row['rec_desc']."</p>";
echo "</div>";
}
echo "</div>";
}
else
{
mysql_error();
}
?>
my rec_desc have 500 texts.. i want it to be responsive and in the parent when the browser is being resized.. thanks..