使用Bootstrap在表单内的表单标签旁边添加纯文本

要将纯文本添加到表单中的表单标签,请使用Bootstrap中的.form-control-static

您可以尝试运行以下代码以在Bootstrap中实现 .form-control-static

示例

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <form class = "form-horizontal">
         <div class = "form-group">
            <label class = "control-label col-sm-2" for = "email">Email:</label>
            <div class = "col-sm-5">
               <p class = "form-control-static">amit@demo.com</p>
            </div>
         </div>
      </form>
   </body>
</html>