我如何使用引导程序在输入框内添加按钮 由 rtotam发布于 2020-05-18 04:32:46 csshtmltwitter-bootstrap 收藏 我正在尝试找到一种在输入字段内输入按钮的方法,如下所示: 有人可以建议吗? 评论 请 登录后发表观点 sunde 2020-05-18 04:32:46 没有本机引导解决方案。您可以使用自定义代码执行此操作。 .custom-search { position: relative; width: 300px; } .custom-search-input { width: 100%; border: 1px solid #ccc; border-radius: 100px; padding: 10px 100px 10px 20px; line-height: 1; box-sizing: border-box; outline: none; } .custom-search-botton { position: absolute; right: 3px; top: 3px; bottom: 3px; border: 0; background: #d1095e; color: #fff; outline: none; margin: 0; padding: 0 10px; border-radius: 100px; z-index: 2; } <div class="custom-search"> <input type="text" class="custom-search-input" placeholder="Enter your email"> <button class="custom-search-botton" type="submit">Subscribe</button> </div> 根据引导程序样式,使用引导程序混合解决方案。 .custom-search { position: relative; } .custom-search-input { width: 100%; padding-right: 100px !important; box-sizing: border-box; } .custom-search-botton { position: absolute; right: 3px; top: 3px; bottom: 3px; line-height: 1 !important; z-index: 4; } <script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script> <link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous"> <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script> <div class="input-group custom-search"> <input type="text" class="form-control custom-search-input" placeholder="Enter your email"> <button class="btn btn-primary custom-search-botton" type="submit">Subscribe</button> </div> 点赞 评论 时光逆转 2020-05-18 04:32:46 您不能仅使用引导程序将按钮放在输入字段内,但可以使用自定义CSS将按钮移动到输入字段内。我为您创建了一个小示例(我使用了引导程序4): input[type="text"] { width: 200px; height: 50px; padding-right: 50px; } .example { margin: 5px -90px 5px; height: 40px; width: 80px; z-index: 100; } .test-div { width: 200px; } <link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" /> <div class="test-div"> <div class="input-group"> <input type="text" class="form-control" placeholder="Search for..."> <button class="btn btn-outline-secondary example" type="button">Button</button> </div> </div> 点赞 评论 到底啦
没有本机引导解决方案。您可以使用自定义代码执行此操作。
根据引导程序样式,使用引导程序混合解决方案。
您不能仅使用引导程序将按钮放在输入字段内,但可以使用自定义CSS将按钮移动到输入字段内。我为您创建了一个小示例(我使用了引导程序4):