【问题标题】:Need CSS3 Button Styling需要 CSS3 按钮样式
【发布时间】:2017-04-21 13:03:42
【问题描述】:
【问题讨论】:
标签:
html
css
button
stylesheet
styling
【解决方案1】:
这里是渐变部分的建议。 图标你需要自己添加。
a {
position: relative;
display: inline-block;
width: 120px;
height: 50px;
line-height: 50px;
text-align: center;
border-radius: 25px;
border: 1px solid lightgray;
background: linear-gradient(#999,#fff);
text-decoration: none;
}
a::before {
content: '';
position: absolute;
left: 9px;
top: 9px;
width: 100px;
height: 30px;
border-radius: 15px;
border: 1px solid gray;
background: white;
}
a span {
position: relative;
}
<a href="#">
<span>Home <i class="material-icons ico-style"></i></span>
</a>