改变外观和感觉按钮

时间:2016-04-18 11:27:26

标签: html css

我们有一个按钮,它显示如下:

enter image description here

我们希望显示如下:

enter image description here

.saveall
{
	
text-transform: capitalize;

font-weight: bold;
float: left;
        text-align: center;
        color: #fff;

background: #3fbdf7;
font: 500 14px/1.35 Roboto Slab,Arial,Helvetica,sans-serif;
overflow: visible;
        width: auto;
        cursor: pointer;
vertical-align: middle;

display: inline-table;
        padding: 9px;
        position: relative;

        margin-left: 6px;
        margin-right: 6px;

}
<button class="saveall" title="Save all'" type="button" style="float: left;padding: 5px 5px 5px 0;" onclick="changeaction()"  id="mass_update_butn">
       <span><span>Invoice</span></span>
</button>

请帮我找到解决方案

提前致谢

2 个答案:

答案 0 :(得分:2)

看起来很简单。

删除内联样式和边框,然后调整填充。

除非你有特殊的理由,否则这些内部分支并不是必需的。

.saveall {
  text-transform: capitalize;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #3fbdf7;
  font: 500 14px/1.35 Roboto Slab, Arial, Helvetica, sans-serif;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  padding: 6px 24px;
  position: relative;
  border: none;
}
<button class="saveall" title="Save all'" type="button" onclick="changeaction()" id="mass_update_butn">
  Invoice
</button>

答案 1 :(得分:0)

试试这个

&#13;
&#13;
button {
  border: none;
  background: #3FBDF7;
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 25px;
}
&#13;
<button>Invoice</button>
&#13;
&#13;
&#13;