here what i am trying is i am displaying the 3 bootstrap cards here what i am trying to achieve is on hover of card the card has to be zooming or pop out with out using j query / java script. by using the css i can achieve but how to implement in bootstrap
below is mycard code i used css
<div>
<article class="plan">
<h1>FREE</h1>
<h2>$0/month</h2>
<h3>For hobby projects or small teams.</h3>
<ul class="plan__features">
<li>1 Workspace</li>
<li>Unlimited Traffic</li>
<li>10GB Storage</li>
<li>Basic Support</li>
</ul>
<div>
<button>CHOOSE PLAN</button>
</div>
</article>
<article class="plan plan--highlighted">
<h1 class="plan__annotation">RECOMMENDED</h1>
<h1>PLUS</h1>
<h2>$29/month</h2>
<h3>For ambitious projects.</h3>
<ul class="plan__features">
<li>5 Workspaces</li>
<li>Unlimited Traffic</li>
<li>100GB Storage</li>
<li>Plus Support</li>
</ul>
<div>
<button>CHOOSE PLAN</button>
</div>
</article>
<article class="plan">
<h1>PREMIUM</h1>
<h2>$99/month</h2>
<h3>Your enterprise solution.</h3>
<ul class="plan__features">
<li>10 Workspaces</li>
<li>Unlimited Traffic</li>
<li>Unlimited Storage</li>
<li>Priority Support</li>
</ul>
<div>
<button>CHOOSE PLAN</button>
</div>
</article>
</div>