我尝试使用sass为我的Foundation 6主题设置自己的空心按钮:
.light-hollow-button{
@include button-hollow;
}
但是如何在悬停时设置链接颜色,边框颜色和边框颜色的样式?
答案 0 :(得分:1)
.light-hollow-button{
@include button-hollow;
&:hover{
color: // your color;
border-color: // your color;
}
}
试试这个!