Is it feasible to establish custom widths in bootstrap 5? The official documentation only addresses setting the width proportionate to the parent container (25%, 50%, 75%, or 100% of the parent's width) or proportional to the viewport (vw-100 etc.). I am attempting to achieve a layout similar to this:
<div class="w-25rem"> <div>
which would specify the width as 25rem.
Can this be accomplished using Bootstrap, or do I need to resort to inline styling or creating a new class with the desired styles?