My goal is simple, stick the p tag to the right side of the custom css card, to make it stick to the left it is pretty straightforward.
custom-text {
margin-left: 30px;
}
The question is how do I make the $100 dollars always stick to the right? and let say the value of the dollars change to $5, how to make it always on the right?
I can just use
custom-text-right {
margin-left: 450px;
}
but this solution doesn't scale to different value (Im using bootstrap just for your information)
HTML part:
<h4>Price: <span class="dollar">$3.15</span></h4>