CSS 按钮

学习如何使用 CSS 设置按钮样式。

基本按钮样式

实例

  1. .button {
  2. background-color: #4CAF50; /* Green */
  3. border: none;
  4. color: white;
  5. padding: 15px 32px;
  6. text-align: center;
  7. text-decoration: none;
  8. display: inline-block;
  9. font-size: 16px;
  10. }

css_buttons_basic.htm

按钮颜色

请使用 background-color 属性更改按钮的背景色:

实例

  1. .button1 {background-color: #4CAF50;} /* 绿色 */
  2. .button2 {background-color: #008CBA;} /* 蓝色 */
  3. .button3 {background-color: #f44336;} /* 红色 */
  4. .button4 {background-color: #e7e7e7; color: black;} /* 灰色 */
  5. .button5 {background-color: #555555;} /* 黑色 */

css_buttons_color.htm

按钮尺寸

请使用 font-size 属性更改按钮的字体大小:

实例

  1. .button1 {font-size: 10px;}
  2. .button2 {font-size: 12px;}
  3. .button3 {font-size: 16px;}
  4. .button4 {font-size: 20px;}
  5. .button5 {font-size: 24px;}

css_buttons_font.htm

请使用 padding 属性更改按钮的内边距:

实例

  1. .button1 {padding: 10px 24px;}
  2. .button2 {padding: 12px 28px;}
  3. .button3 {padding: 14px 40px;}
  4. .button4 {padding: 32px 16px;}
  5. .button5 {padding: 16px;}

css_buttons_padding.htm

圆角按钮

请使用 border-radius 属性为按钮添加圆角:

实例

  1. .button1 {border-radius: 2px;}
  2. .button2 {border-radius: 4px;}
  3. .button3 {border-radius: 8px;}
  4. .button4 {border-radius: 12px;}
  5. .button5 {border-radius: 50%;}

css_buttons_round.htm

彩色的按钮边框

请使用 border 属性为按钮添加彩色边框:

实例

  1. .button1 {
  2. background-color: white;
  3. color: black;
  4. border: 2px solid #4CAF50; /* 绿色 */
  5. }
  6. ...

css_buttons_border.htm

可悬停按钮

当鼠标移动到按钮上方时,使用 :hover 选择器可更改按钮的样式。

提示:请使用 transition-duration 属性来确定“悬停”效果的速度:

实例

  1. .button {
  2. transition-duration: 0.4s;
  3. }
  4. .button:hover {
  5. background-color: #4CAF50; /* Green */
  6. color: white;
  7. }
  8. ...

css_buttons_hover.htm

阴影按钮

请使用 box-shadow 属性为按钮添加阴影:

实例

  1. .button1 {
  2. box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  3. }
  4. .button2:hover {
  5. box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
  6. }

css_buttons_shadow.htm

禁用的按钮

请使用 opacity 属性为按钮添加透明度(创建“禁用”外观)。

提示:您还可以添加带有 “not-allowed” 值的 cursor 属性,当您将鼠标悬停在按钮上时,该属性会显示 “no parking sign”(禁停标志):

实例

  1. .disabled {
  2. opacity: 0.6;
  3. cursor: not-allowed;
  4. }

css_buttons_disabled.htm

按钮宽度

默认情况下,按钮的大小取决于其文本内容(与内容的宽度一样)。请使用 width 属性来更改按钮的宽度:

实例

  1. .button1 {width: 250px;}
  2. .button2 {width: 50%;}
  3. .button3 {width: 100%;}

css_buttons_width.htm

按钮分组

删除外边距并向每个按钮添加 float:left,来创建按钮组:

实例

  1. .button {
  2. float: left;
  3. }

css_buttons_group.htm

带边框的按钮组

使用 border 属性来创建带边框的按钮组:

实例

  1. .button {
  2. float: left;
  3. border: 1px solid green;
  4. }

css_buttons_group_border.htm

垂直按钮组

使用 display:block 取代 float:left 将按钮上下分组,而不是并排:

实例

  1. .button {
  2. display: block;
  3. }

css_buttons_group_vertical.htm

图像上的按钮

trycss_buttons_image.htm

动画按钮

实例 1

在鼠标悬停时添加箭头:

css_buttons_animate_1.htm

实例 2

添加点击时的“按键按下”效果:

css_buttons_animate_2.htm

实例 3

鼠标悬停时淡入:

css_buttons_fade.htm

实例 4

添加点击时的“涟漪”效果:

css_buttons_animate_3.htm