您好StackOverflow社区,我正在基于twitter bootstrap 2.0.4在某个页面构建一个网站,我想在输入上附加一个按钮。问题是在输入和按钮之间显示边距。
我确信这是我缺少的东西,但我无法确定它是什么?
编辑:某些样式(如已停用和不可编辑的输入)未在页面中正确应用
编辑2 :显然正在使用.disabled和.uneditable-input。
JFiddle:http://jsfiddle.net/sHGtb/
JFiddle全屏结果:http://jsfiddle.net/sHGtb/embedded/result/
任何帮助??
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="http://localhost/test/index.php/../css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="http://localhost/test/index.php/../css/bootstrap-responsive.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--[if lt IE 9]>
<script src="../../js/html5shiv.js"></script>
<![endif]-->
<script type="text/javascript" src="http://localhost/test/index.php/../js/modernizr.js"></script>
</head>
<body>
<div class="container">
<form class="form-horizontal">
<fieldset>
<hr/>
<h4>Puesto</h4>
<p>Debe estar asignado segun su perfil, solo los administradores pueden cambiar esta opcion; si existiese alguna irregularidad debe solicitar reportelo al administardor.</p>
<div class="control-group">
<label for="puesto" class="control-label">Puesto</label>
<div class="controls">
<div class="input-append">
<input type="text" name="puesto" class="input-xlarge" />
<button class="btn" type="button"><i class="icon-search"></i></button>
</div>
</div>
</div>
<hr/>
</fieldset>
</form>
</div>
<script language="javascript" type="text/javascript" src="http://localhost/test/index.php/../js/jquery-1.7.2.min.js"></script>
<script language="javascript" type="text/javascript" src="http://localhost/test/index.php/../js/bootstrap.min.js"></script>
</body>
</html>
答案 0 :(得分:18)
这可能听起来很愚蠢但是不要在输入和文本编辑器弄乱页面的按钮之间留下新的一行:-P
<div class="control-group">
<label for="puesto" class="control-label">Puesto</label>
<div class="controls">
<div class="input-append">
<input type="text" name="puesto" class="input-xlarge" /><button class="btn" type="button"><i class="icon-search"></i></button>
</div>
</div>
</div>
答案 1 :(得分:0)
如果我理解你,你想消除按钮和输入字段之间的边距? 你可以试试这样的......
<input type="text" name="puesto" class="input-xlarge" style="margin-right:0;"/>
<button class="btn" type="button" style="margin-left:0;"><i class="icon-search"></i></button>
如果该样式不起作用,请尝试在元素上使用更多css样式。