如何增加可编辑引导程序TextBox的宽度?

时间:2014-12-31 05:04:37

标签: html twitter-bootstrap textbox

这是我的代码:

JS:

$('.edit').editable();

HTML:

<li class='edit' style='cursor=hand'>I want to edit this</li>

如果有人点击此<li>菜单,则会显示Bootstrap可编辑框,但它太小。如何增加尺寸?我查了一下Google但找不到合适的答案。

由于

1 个答案:

答案 0 :(得分:0)

CSS:

.edit {
    padding: 3px 5px;
    width: auto;
    height: auto;
    font-size: 14px; }

您可以根据所需的外观重新处理这些属性。