Reputation: 768
i design one form for registration of users.
in that i use tag in i use align="center"
<fieldset style="width:618.233px;" align="center">
but now problem is that in IE it run successfully.But in firefox it cant accept "align=center". it just display form bydefault(means left align)
i cant user tag because form get ugly look. what should i do?
Upvotes: 0
Views: 72
Reputation: 2591
You have two options:
text-align
property, not the whole fieldset.width:618.233px;
) and add this CSS properties: margin-left: auto; margin-right: auto;
or simply margin: 0 auto;
Upvotes: 0