skip to Main Content

How to make space between two text boxes in bootstrap-Twitter bootstrap

I need small white space between two text boxes. <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet" /> <div class="row col-lg-12 col-sm-12"> <div class="input-group col-md-8"> <span class="control-label">Product Name*</span> <input type="text" class="form-control" placeholder="Product Name" id="productname" required> </div> <div class="input-group col-md-4" style=> <span class="control-label">Short Name*</span> <input type="text"…

VIEW QUESTION

Transform Issue With Bootstrap Card-Twitter bootstrap

I have such a bootstrap card: .task__content { transition: transform 0.2s linear 0s; transform: scaleY(0); transform-origin: top center; } .task:hover .task__content { transform: scaleY(1); } <link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet"/> <div class="task card" data-is-complete="incomplete"> <div class="task__toolbar card-header d-flex align-items-center py-2"> <!--task checklist-->…

VIEW QUESTION
Back To Top
Search