css按钮在哪,CSS按钮

CSS Buttons

Learn how to style buttons using CSS.

Basic Button Styling

Default Button CSS Button

例子

.button {

background-color: #4CAF50; /* Green */

border: none;

color: white;

padding: 15px 32px;

text-align: center;

text-decoration: none;

display: inline-block;

font-size: 16px;

}

来试试吧 »

Button Colors

Green

Blue

Red

Gray

Black

Use the background-color property to change the background color of

a

button:

例子

.button1 {background-color: #4CAF50;} /* Green */

.button2

{background-color: #008CBA;} /* Blue */

.button3 {background-color:

#f44336;} /* Red */

.button4 {background-color: #e7e7e7; color: black;} /* Gray */

.button5

{background-color: #555555;} /* Black */

来试试吧 »

Button Sizes

10px

12px

16px

20px

24px

Use the font-size property to change the font size of a button:

例子

.button1 {font-size: 10px;}

.button2 {font-size: 12px;}

.button3

{font-size: 16px;}

.button4 {font-size: 20px;}

.button5 {font-size: 24px;}

来试试吧 »

Use the padding property to change the padding of a button:

10px 24px

12px 28px

14px 40px

32px 16px

16px

例子

.button1 {padding: 10px

24px;}

.button2 {padding: 12px 28px;}

.button3 {padding: 14px 40px;}

.button4 {padding: 32px 16px;}

.button5 {padding: 16px;}

来试试吧 »

Rounded Buttons

2px

4px

8px

12px

50%

Use the border-radius property to add rounded corners to a button:

例子

.button1 {border-radius: 2px;}

.button2 {border-radius: 4px;}

.button3

{border-radius: 8px;}

.button4 {border-radius: 12px;}

.button5 {border-radius: 50%;}

来试试吧 »

Colored Button 边框

Green

Blue

Red

Gray

Black

Use the border property to add a colored border to a button:

例子

.button1 {

background-color: white;

color: black;

border: 2px solid #4CAF50; /* Green */

}

...

来试试吧 »

Hoverable Buttons

Green

Blue

Red

Grey

Black

Green

Blue

Red

Grey

Black

Use the :hover selector to change the style of a button when you move the

mouse over it.

Tip: Use the transition-duration property to determine the

speed of the "hover" effect:

例子

.button {

transition-duration: 0.4s;

}

.button:hover {

background-color: #4CAF50; /* Green */

color: white;

}

...

来试试吧 »

Shadow Buttons

Shadow Button

Shadow on hover

Use the box-shadow property to add shadows to a button:

例子

.button1 {

box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0

rgba(0,0,0,0.19);

}

.button2:hover {

box-shadow: 0 12px

16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);

}

来试试吧 »

Disabled Buttons

Normal Button

Disabled Button

Use the opacity property to add transparency to a button (creates a

"disabled" look).

Tip: You can also add the cursor property with a value of

"not-allowed", which will display a "no parking sign" when you mouse over the

button:

例子

.disabled {

opacity: 0.6;

cursor: not-allowed;

}

来试试吧 »

Button Width

250px

50%

100%

By default, the size of the button is determined by its text content (as wide as its

content). Use the width property to change the width of a button:

例子

.button1 {width: 250px;}

.button2 {width: 50%;}

.button3 {width:

100%;}

来试试吧 »

按钮组s

Button

Button

Button

Button

Remove margins and add float:left to each button to create a button group:

例子

.button {

float: left;

}

来试试吧 »

Bordered 按钮组

Button

Button

Button

Button

Use the border property to create a bordered button

group:

例子

.button {

float: left;

border: 1px

solid green;

}

来试试吧 »

Vertical 按钮组

Button

Button

Button

Button

Use display:block instead of float:left to group the buttons below each other, instead of side by side:

例子

.button {

display: block;

}

来试试吧 »

图片上的按钮

39ded66a8e8e2b99745ab05b76066562.png

Button

来试试吧 »

动画按钮

例子

Add an arrow on hover:

Hover

来试试吧 »

例子

Add a "pressed" effect on click:

Click

来试试吧 »

例子

Fade in on hover:

Fade In

来试试吧 »

例子

Add a "ripple" effect on click:

Click

来试试吧 »

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值