使用CSS的按钮样式

时间:2013-08-31 14:11:12

标签: css

我的网页上有一个按钮。

<button id="button" type="button">Show</button>

我希望我的按钮为蓝色,如果可能的话还有圆角。我怎样才能做到这一点??我对造型很陌生。

2 个答案:

答案 0 :(得分:1)

更正了你的MARK UP

 <button class="button">SHOW</button> /*..you were missing the >   ...*/

和css

 .button{
background-color:blue;
border-radius:10px;
}

<强> EXAMPLE

答案 1 :(得分:0)

试试这个CSS:

#button {
    background: blue;
    border-radius: 35px;
    border: none;
}

小提琴:http://jsfiddle.net/qLZKs/