मैं बटन के बीच रिक्ति देना चाहता हूं, बूटस्ट्रैप का उपयोग करके रिक्ति देने का एक तरीका है ताकि वे विभिन्न स्क्रीन प्रस्तावों के अनुरूप होंगे।
मैंने प्रयोग करने की कोशिश की margin-leftलेकिन क्या यह ऐसा करने का सही तरीका है। ??
यहाँ डेमो है
HTML:
<div class="btn-toolbar text-center well">
<button type="button" class="btn btn-primary btn-color btn-bg-color btn-sm col-xs-2 margin-left">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span> ADD PACKET
</button>
<button type="button" class="btn btn-primary btn-color btn-bg-color btn-sm col-xs-2 margin-left">
<span class="glyphicon glyphicon-edit" aria-hidden="true"></span> EDIT CUSTOMER
</button>
<button type="button" class="btn btn-primary btn-color btn-bg-color btn-sm col-xs-2 margin-left">
<span class="glyphicon glyphicon-time" aria-hidden="true"></span> HISTORY
</button>
<button type="button" class="btn btn-primary btn-color btn-bg-color btn-sm col-xs-2 margin-left">
<span class="glyphicon glyphicon-trash" aria-hidden="true"></span> DELETE CUSTOMER
</button>
</div>
सीएसएस:
.margin-left{
margin-left: 80px !important;
}