Member Avatar for nova37

i want to know how to use css with html forms

i have css button

<style>
a.btn {
    display: block; width: 120px; height: 18px; padding: 18px 0 0 0; margin: 0 auto;

    background: #398525; /* old browsers */
    background: -moz-linear-gradient(top, #8DD297 0%, #398525 100%); /* firefox */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8DD297), color-stop(100%,#398525)); /* webkit */

    box-shadow: inset 0px 0px 6px #fff;
    -webkit-box-shadow: inset 0px 0px 6px #fff;
    border: 1px solid #5ea617;
    border-radius: 10px;

    font: bold 20px/01px Helvetica, Sans-Serif; text-align: center;
    text-transform: uppercase; text-decoration: none;
    color: #FFFFFF;
    text-shadow: 0px 1px 2px #b4d1ad;

    -moz-transition: color 0.25s ease-in-out;
    -webkit-transition: color 0.25s ease-in-out;
    transition: color 0.25s ease-in-out;
}

    a.btn:hover {
        color: #145675;

        -moz-transition: color 0.25s ease-in-out;
        -webkit-transition: color 0.25s ease-in-out;
        transition: color 0.25s ease-in-out;
    }
</style>

<a href="#" class="btn">Push</a>

i want to use this button is form search button
i tried
<input type="submit" class="btn" name="submit" value="search" />

but it can not work

Recommended Answers

All 3 Replies

That is because your class btn has been assigned to a (link) in your css and a submit button isn't a link. Just remove the a from a.btn in your stylesheet and that should work.

If you wanted the css to just apply to the submit button you could change your css to be:

input[type=submit].btn{

This will apply the css to any submit buttons that use the class "btn" rather than just links that use the clas btn.

Member Avatar for nova37

thanks

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.