Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
/* aus */
margin-bottom: 5%;
margin-top: 5%;
margin: 0 auto;
/* wird */
margin: 5% auto;
hr {
border:1px dotted black;
}
<tr>
<td><img src="/product_images/thumbs/18658-6172.jpg"></td>
<td>USB 2.0 Memory Stick, </td>
<td>15,90</td>
</tr><hr>
echo '<table width="110%" border="0">';
while($row1 = mysql_fetch_assoc($query))
{
echo '
<tr>
<td><img src="'.$config['site_url'].'/product_images/thumbs/'.$row1['product_image5'].'"></td>
<td>'.$row1['product_name'].'</td>
<td>'.$row1['product_price'].'</td>
</tr><hr>';
}
echo '</table>';
echo '<table width="110%" border="0">';
while($row1 = mysql_fetch_assoc($query))
{
echo '
<tr>
<td><img src="'.$config['site_url'].'/product_images/thumbs/'.$row1['product_image5'].'"></td>
<td>'.$row1['product_name'].'</td>
<td>'.$row1['product_price'].'</td>
</tr>
<tr>
<td colspan=\"3\"><hr></td>
</tr>';
}
echo '</table>';