从按钮中删除阴影

问题描述 投票:10回答:3

我想要的按钮是底部的按钮,但我拥有的按钮是顶部。

enter image description here

问题来自于HTML中的顶部按钮:

<form class="button_to" method="get" action="/"><input type="submit" value="Ok" /></form>

和HTML中的底部按钮:

<button type="button">Ok</button>

顶部按钮的CSS是:

.signup-success input[type="submit"],
.signup-success input[type="submit"]:active,
.signup-success input[type="submit"]:focus {
  width: 80%;
  background: transparent;
  color: #00AA66;
  border-color: #00AA66;
}

底部按钮的CSS是:

.signup-success button,
.signup-success button:active,
.signup-success button:focus {
  margin-top: 15px;
  width: 80%;
  background: transparent;
  color: #00AA66;
  border-color: #00AA66;
}

如果它有助于从rails .erb扩展名生成顶部按钮

<%= button_to "Ok", root_path, :method => :get %>

帮助我让我的顶部按钮看起来像底部按钮。我试图放入禁用CSS中的阴影的代码,但它不起作用:(

html css ruby-on-rails shadow
3个回答
17
投票

使用border-style:

.signup-success input[type="submit"],
.signup-success input[type="submit"]:active,
.signup-success input[type="submit"]:focus {
  width: 80%;
  background: transparent;
  color: #00AA66;
  border-color: #00AA66;
  border-style: solid;
}

或组合版本(边框样式,边框宽度和边框颜色合二为一):

border: 2px solid #00AA66;

1
投票

或者你可以简单地给你的按钮border: none


0
投票

足够有趣添加边框固定safari的怪异投影按钮。

border: 1px solid #34c1e5;
© www.soinside.com 2019 - 2024. All rights reserved.