底部的按钮被切成薄片

时间:2012-12-19 13:20:16

标签: html css button sass

为什么在我的按钮被切成底部?我需要它在每个角落都是圆形的...... 现在我有这个: enter image description here 但是如果我写入橙色按钮类css属性float:left,我得到结果,我需要什么......但这是个坏主意。 enter image description here 如何以正常方式做到这一点?

(我也使用sass + haml)

.orange-button{
  padding: 6px;
  @include gradient-background(bottom, $or1, #fbb752); 
  //background: url('button-carbon-bg.png') no-repeat, -webkit-linear-gradient(bottom, $or1, #fbb752);
  @include border-radius(5px, 5px, 5px, 5px);
  //background: transparent url('button-carbon-bg.png') no-repeat;
  border: 1px solid #d27d00;
  font-family: “Myriad Pro”, Arial, Helvetica, Tahoma, sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: $or3;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .70);
  font-style: normal;
  @include box-shadow(inset 0 1px 0 rgba(255,255,255,0.5));
  border-bottom:2px solid #B16900;
}
.orange-button:hover{
  @include gradient-background(bottom, #eba641, #fcc97d); 
}

并且小提琴: http://jsfiddle.net/Zfq73/

2 个答案:

答案 0 :(得分:6)

如果您不想使用包装或溢出,另一种解决方案是将display: inline-block添加到.orange-button

请参阅更新的小提琴:http://jsfiddle.net/Zfq73/2/

P.S。我总是喜欢在名为.inline-block.block的样式表中添加单独的css元素显示类。

 .inline-block {
 display: inline-block;
 }

.block {
display: block;
}

HTML:

<button class="orange-button inline-block">only THIS orange button is an inline button!</button>

通过这种方式,您可以将display: inline-blockdisplay: block附加到各个按钮,而无需将所有橙色按钮display: inline-block都设为。

答案 1 :(得分:3)

.wrapper .center .right规则中删除overflow: hidden;

这是因为您的按钮位于元素区域之外(溢出,因此隐藏)。

<强> Code Example