如何在不使用桌子的情况下制作联系表格?

时间:2013-10-04 04:01:54

标签: css forms html tags

我想为我的网站制作一个联系表格。我想在不使用桌子的情况下制作它。我怎么做?我正在看div标签,因为我想用CSS设计它。我想给它一个长度和宽度。我想把它放在一个主div标签中,但我不知道我是怎么做的。请帮我。我该怎么做?

2 个答案:

答案 0 :(得分:0)

尝试在Google上搜索:“联系表单CSS”。

您将获得许多示例,其中包含您将丢失的代码:D

看看这两个。

<强> css-tricks.com

<强> net.tutsplus.com

希望这有帮助

答案 1 :(得分:0)

我使用了类似的东西 -

<form id="contact-form" name="contact-form" action="/contact-us" method="post">
    <div class="form-col">
        <input type="text" name="Requester.FirstName" class="styled" placeholder="First Name">
        <input type="text" name="Requester.LastName" class="styled" placeholder="Last Name">
        <div class="selector fixedWidth">
           <span>Subject</span>
           <select name="Subject" class="styled">
            <option value="">Subject</option>
            <option value="custserv">Customer Service</option>
            <option value="vendor">Vendor</option>
            <option value="other">Other</option>
            </select>
        </div>
        <textarea name="message" class="styled"></textarea>
    </div>
    <div class="form-col">
        <input type="text" name="Requester.ContactInfo.Email" class="styled" placeholder="Email Address">
        <input type="text" name="Requester.ContactInfo.Phone" class="styled" placeholder="Phone Number">

        <span class="question">How do you prefer to be contacted?</span>
        <label for="contact-method-phone">
            <div class="radio" id="uniform-contact-method-phone"><span><input type="radio" name="ContactMethod" id="contact-method-phone" value="HomePhone" class="styled"></span></div>Phone
        </label>
        <label for="contact-method-email">
            <div class="radio" id="uniform-contact-method-phone"><span><input type="radio" name="ContactMethod" id="contact-method-phone" value="Email" class="styled"></span></div>Email
        </label>
        <input type="text" name="Address.StreetAddress1" class="styled" placeholder="Address">
        <input type="text" name="Address.StreetAddress1" class="styled">
        <input type="submit" value="CONTACT US" class="m-form-button" name="CONTACT US">
    </div>
</form>

我在造型时尝试关注SMACSS

相关问题