我想要的按钮是底部的按钮,但我拥有的按钮是顶部。
问题源于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中添加禁用阴影的代码,但它不起作用:(
答案 0 :(得分:14)
使用border-style:
$("#image").attr('data-zoom-image','MY IMAGE URL');
或组合版本(border-style,border-width和border-color in one):
.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;
}
答案 1 :(得分:1)
或者您也可以将border: none
赋予按钮
答案 2 :(得分:0)
有趣的是在按钮上添加边框,从而固定了野生动物园的怪异阴影。
<TreeView Margin="10,40,10,10" Grid.Column="0" x:Name="treeView" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" SelectedItemChanged="TreeView_SelectedItemChanged" />
private void TreeView_SelectedItemChanged(object sender, RoutedPropertyChangedEventArgs<object> e) {
if (e.NewValue == null)
return;
((TreeViewItem)e.NewValue).BringIntoView();
}
答案 3 :(得分:0)
只需添加自己的边框即可。
border: 1px solid black;
或删除边框。
border: none;