button按钮下边框有立体效果样式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了button按钮下边框有立体效果样式相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
	<style>
		.Button {
    display: inline-block;
    margin: 0;
    min-width: 100px;
    padding: .5rem;
    border: 1px solid;
    border-color: #3ec9cb;
    border-radius: 2px;
    background: #3ec9cb;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-transform: capitalize;
    text-decoration: none;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    -webkit-transition-property: border-color,background-color,color;
    transition-property: border-color,background-color,color;
}
.Button.u-cta {
    border-bottom-color: #189697;
    border-bottom-width: thick;
}

.Button.u-large {
    font-size: 1.25rem;
    padding: .75em;
}
	</style>
	<button class="Button l-w-100 l-ma0 l-h5 u-large u-cta" data-reactid="7">Subscribe</button>
</body>
</html>

  

以上是关于button按钮下边框有立体效果样式的主要内容,如果未能解决你的问题,请参考以下文章

css中如何去掉button(按钮)的边框

html文本框和按钮这些点击时不显示边框的光晕。 或者淡化好看些。

ionic button 怎么设置边框

以编程方式插入的按钮样式无法正常工作

css 如何用图片改变表单边框的样式(圆角边框,有阴影)

怎么去掉按钮的边框?