Web Design Forum: Avera - Viewing Profile - Web Design Forum

Jump to content

WDF
WDF Premium Memberships Reseller Hosting

Avera's Profile User Rating: *****

Reputation: 1 Neutral
Group:
Members
Active Posts:
413 (0.35 per day)
Joined:
16-November 08
Profile Views:
4,214
Last Active:
User is offline Mar 31 2011 12:36 PM
Currently:
Offline

My Information

Member Title:
Advanced Member
Age:
42 years old
Birthday:
January 1, 1970
Gender:
Not Telling Not Telling
Location:
Manchester

Contact Information

E-mail:
Private
Website URL:
Website URL  http://

Users Experience

Experience:
Web Guru
Area of Expertise:
Designer/Coder

Topics I've Started

  1. Should a button go inside or outside a fieldset?

    27 March 2011 - 10:46 AM

    I've bee toying with this for a while and I thought I would ask you guys to see what you think.

    These are the options:

    - Submit button outside the fieldset:

    <fieldset>
        <legend>Fieldset Title</legend>
        <input type="text" name="firstname" value=""/>
    </fieldset>
    <input type="submit" name="Submit" value="Submit"/>
    


    - Submit button inside the fieldset:

    <fieldset>
        <legend>Fieldset Title</legend>
        <input type="text" name="firstname" value=""/>
        <input type="submit" name="Submit" value="Submit"/>
    </fieldset>
    


    There are positive and negative points of both options but what do you guys think?