css如何在按钮上获得圆角.

use*_*883 4 html css jquery rounded-corners

我有一个带有CSS的按钮,它现在没有圆角.我有左右图像(角落)如何将它们应用到下面的CSS?谢谢你的帮助.

.myButton
{
    background-image: url(../../Images/SubmitButtonBack.png);
    color: White;
    font-family: Verdana;
    font-weight: bold;
    font-size: 8pt;
    width: 160px;
    height: 22px;
    border: none;
    position: relative;
    cursor: pointer;
    margin-bottom:5px;
}
Run Code Online (Sandbox Code Playgroud)

Arv*_*rve 9

CSS3允许您通过指定border-radius而执行此操作

http://www.css3.info/preview/rounded-border/