Bootstrap .form-control-static 類


在水平表單中,當您需要在表單標籤旁邊放置純文字時,針對 <p> 元素使用 .form-control-static 類。

您可以嘗試執行以下程式碼來實現 .form-control-static 類 −

示例

線上演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
      <script src = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
   </head>
   <body>
      <form class = "form-horizontal" role = "form">
         <div class = "form-group">
            <label class = "col-sm-2 control-label">Email:</label>
            <div class = "col-sm-10">
               <p class = "form-control-static">amit@example.com</p>
            </div>
         </div>
         <div class = "form-group">
            <label for = "inputPassword" class = "col-sm-2 control-label">Password:</label>
            <div class = "col-sm-10">
               <input type = "password" class = "form-control" id = "inputPassword" placeholder = "Password">
            </div>
         </div>
      </form>
   </body>
</html>

更新時間:2020 年 6 月 12 日

1K+ 次瀏覽

開啟您的 職業生涯

完成課程獲得認證

開始行動
廣告
© . All rights reserved.