What I'm looking for is a clean method to round the corners of all inputs with the class "submit". I've experimented with a number of javascript techniques, but none worked well for form elements. Pure CSS would be great, but, note, the button needs to expand, and will have arbitrary text. Other methods required really ugly HTML cruft around the inputs, which I don't want.

Any ideas?

link|improve this question

feedback

5 Answers

up vote 6 down vote accepted

Try CurvyCorners (30,100 bytes, minified) for this solution because IE browser will not make it rounded. I haven't tried adding an image though.

<style type="text/css">
.input-rounded-button {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid gray;
    padding:0 3px 0 3px;
    display:inline-block;
    text-decoration:none;
    background:#595651;

    color:#FFFFFF;
    cursor:pointer;
    font:11px sans-serif;
}

.input-rounded-button:hover { 
    text-decoration:none; 
    color:#ADD8E6; 
    cursor:pointer;
    border:1px solid #FF2B06;
}
</style>

<input class="input-rounded-button" type="button" value="SEARCH" />
link|improve this answer
newer IE should support the method above, if not, consider not making them rounded in IE only. I mean really, get with standards already! – mahalie Jan 23 '11 at 2:51
thanks man - this just helps me a lot! – Kyle Feb 29 at 21:35
feedback

I've been using this method for a while -

http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html

It works pretty well

link|improve this answer
+1 Awesome. I've used this for a while. Pure CSS, just works. – David Berger Apr 23 '09 at 16:47
That looks like it is for anchors, and does not seem to support vertical scaling. Or am i missing something? – Buzz Apr 23 '09 at 17:11
You are missing something - this method can be extended to support the button element - filamentgroup.com/lab/… Don't forget to specify a button type="submit" for IE. I haven't found something with vertical scaling, or had the need for it. – danpickett Apr 24 '09 at 13:01
2  
This does NOT support form inputs, and does NOT support vertical scaling. Why the hell is this answer being upvoted? I know very well how to deal with buttons, and how to do this without permitting vertical scaling. That's NOT what I asked. – Buzz May 14 '09 at 21:37
feedback

Maybe this one is the kind of workaround you are looking for. Though it doesn't support vertical scaling. (Why the hell do you have multiline submit buttons?)

http://www.hedgerwow.com/360/dhtml/ui-css-input-replacement/demo.php

It's specialized for submit-buttons and supports a fairly reasonable browser range.

link|improve this answer
lol ... i don't have multi-line submit buttons, but if a user zooms in, i don't want the buttons to break. – Buzz Sep 10 '09 at 14:08
1  
404 error on this link. – Chris Porter Mar 2 '10 at 22:23
Is there a mirror of this page? – UpTheCreek May 8 '10 at 9:08
feedback

A number of solutions:

  1. jQuery Cross-Browser Rounded Buttons - < 4,000 bytes
  2. jQuery Corners - 7.6Kb
  3. CSS3 Support in IE6+ - 12148 bytes
  4. CurvyCorners - 30,100 bytes
  5. CSS3 PIE - 40Kb
link|improve this answer
feedback

The easiest way that i know is just to do this:

.button
{
  background-color:#f57070;
  border-radius: 10px;    //-rounding the edges-//
  font-family:arial;
  font-size:30px;
  text-decoration:none;
}

with the html code:

<a href=# class='button'>...</a>

makes a nice red button with rounded edges.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.