码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-12-05 17:01:51      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:scribe   one   lin   type   charset   bottom   color   ansi   min   

<!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按钮下边框有立体效果样式

标签:scribe   one   lin   type   charset   bottom   color   ansi   min   

原文地址:http://www.cnblogs.com/zhujiasheng/p/6134287.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!