Button Bars
बटनों को w3-bar class का उपयोग करके horizontal पट्टी में एक साथ समूहीकृत किया जा सकता है:
Buttons can be grouped together in a horizontal bar using the w3-bar class:
<div class=”w3-bar”> <button class=”w3-button w3-black”>Button</button> <button class=”w3-button w3-teal”>Button</button> <button class=”w3-button w3-red”>Button</button> </div> |
w3-बार-आइटम class का उपयोग करके बटनों को उनके बीच रिक्त स्थान के बिना एक साथ समूहीकृत किया जा सकता है:
Buttons can be grouped together without a space between them by using w3-bar-item class:
<div class=”w3-bar”> <button class=”w3-bar-item w3-button w3-black”>Button</button> <button class=”w3-bar-item w3-button w3-teal”>Button</button> <button class=”w3-bar-item w3-button w3-red”>Button</button> </div> |