|
|
|
| Прошу помочь!
в HTML изменяю границу таким образом:-----------------------------------------------------------------
<html>
<table width="100%" style="border: #000000 1px solid;">
<tr>
<td>ABC
</td>
</tr>
</table>
</html>
-----------------------------------------------------------------
А можно ли аналогично изменить границу в php?-----------------------------------------------------------------
<?php
echo "<table border=1 WIDTH=100%>";
echo "<tr>
<th width=\"31%\" bgcolor = \"#BBCCFF\"><div style=\"font-size: 13px\">Один</font></th>
<th width=\"21%\" bgcolor = \"#BBCCFF\"><div style=\"font-size: 13px\">Два</font></th>
<th width=\" 5%\" bgcolor = \"#BBCCFF\"><div style=\"font-size: 13px\">Три</font></th>
<th width=\" 6%\" bgcolor = \"#BBCCFF\"><div style=\"font-size: 13px\">Четыре</font></th>
<th width=\" 8%\" bgcolor = \"#BBCCFF\"><div style=\"font-size: 13px\">Пять</font></th>
<th width=\"23%\" bgcolor = \"#BBCCFF\"><div style=\"font-size: 13px\">Шесть</font></th>
</tr>";
?>
----------------------------------------------------------------- | |
|
|
|
|
|
|
|
для: Andrey_V
(18.01.2006 в 23:41)
| |
<?php
echo '<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr>';
echo '<td style="border:1px solid black">ТЕКСТ ТЕКСЕ ТЕКСТ</td>';
echo '</tr></table>'
?>
|
| |
|
|
|
|
|
|
|
для: Boss
(18.01.2006 в 23:55)
| | Спасибо за оба ответа. Границы уже поменял, все получилось. Шрифты буду пробовать завтра. | |
|
|
|