stavi kompletan sadrzaj form taga u ovakav div:
<div style="text-align:center">
<label>Jel centrirano</label>
</div>
a mozes sve to staviti i u tabelu:
<table width="100%">
<tbody>
<tr>
<td align="center">
<label>Jel centrirano</label>
</td>
</tr>
</tbody>
</table>
pitanje za web designere
Moderator: Benq
-
hp
- Posts: 1
- Joined: 11/04/2002 00:00
- Contact:
#2
Najbolje rjesenje ti je:
Pazi koji doctype koristis, jer nece raditi u IE ako je u quirks modu.
Code: Select all
<style type="text/css">
#stranica {
width:775px; /* Da bez horizontalnih skrolera */
margin:0 auto;
}
</style>
.
.
.
<div id="stranica">
<!-- Sadrzaj ide ovdje -->
</div>
