CSS将按钮宽度调整为文本

时间:2015-05-07 09:15:17

标签: css

我的按钮宽度有问题。我的表格能够切换语言。对于某些语言,按钮的内容比按钮宽度长,如何调整文本长度的按钮宽度? 这是我的CSS:

html .formRowSubmit input[type="submit"] { 
  width: 26%;
  margin: 5px 0% 5px ;
  margin-bottom: 10px;
  height: 25px;
  border-radius: 3px;
  outline: 0;
  -moz-outline-style: none;
  background: #CAD722;
  border: none;
  color: white;
  font-size: 10px;
  font-weight: 150;
  cursor: pointer;
  transition: box-shadow .4s ease;
}

3 个答案:

答案 0 :(得分:0)

将按钮显示为内联块(并删除宽度)

_snprintf

如果文本要靠近边框,您可能需要添加一些填充。

答案 1 :(得分:0)

您应该尝试设置min-width而不是宽度,如果需要,可以让按钮展开。一旦你这样做,你还应该设置一些水平填充,所以文字不会像这样对接到最后:

input[type="submit"] { 
  min-width: 26%;
  padding: 5px 15px;
}

http://jsfiddle.net/jqjxd0xt/

答案 2 :(得分:-1)

请尝试以下操作: demo

CSS:

.formRowSubmit input[type="submit"] {
    width: auto;
    margin: 5px 0% 5px;
    margin-bottom: 10px;
    height: 25px;
    border-radius: 3px;
    outline: 0;
    -moz-outline-style: none;
    background: #CAD722;
    border: none;
    color: white;
    font-size: 10px;
    font-weight: 150;
    cursor: pointer;
    transition: box-shadow .4s ease;
}

HTML:

<div class="formRowSubmit">
    <input type="submit" value="Submit loooong llloooonnnng text">
</div>