在 Bootstrap 中在前置或後置單選按鈕和複選框


要前置或後置單選按鈕並複選框,而不是文字,您可以嘗試執行以下程式碼

示例

即時演示

<!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>
      <div style = "padding: 100px 100px 10px;background: orange">
         <form class = "bs-example bs-example-form" role = "form">
            <div class = "row">
               <div class = "col-lg-6">
                  <div class = "input-group">
                     <span class = "input-group-addon">
                        <input type = "checkbox">
                     </span>
                     <input type = "text" class = "form-control">
                  </div><!-- /input-group -->
               </div><!-- /.col-lg-6 --><br>
               <div class = "col-lg-6">
                  <div class = "input-group">
                     <span class = "input-group-addon">
                        <input type = "radio">
                     </span>
                     <input type = "text" class = "form-control">
                  </div><!-- /input-group -->
               </div><!-- /.col-lg-6 -->
            </div><!-- /.row -->
         </form>
      </div>
   </body>
</html>

更新於:12-Jun-2020

178 次訪問

開啟你的 職業生涯

完成課程並獲得認證

現在開始
廣告