enter image description hereI am in the process of updating my Bootstrap 4.0 CSS to Bootstrap 4.3 CSS.
Within my price section, there are 3 pricing panels. One of these panels includes an image with absolute positioning and specific pixel coordinates - l-100 t-25
.
<img class="position-absolute l-100 t-25 centered" src="images/gallery/primary.png">
While Bootstrap 4.3 now offers a .position-fixed
class with options for .fixed-top
or .fixed-bottom
, I'm struggling to find equivalent CSS for .position-absolute
.
Despite searching extensively on the Bootstrap 4.3 website and through various search engines, I haven't been able to locate a suitable replacement class for the old positioning. It seems like I might have to create custom styles myself. Can anyone offer assistance?
Please refer to the image showing the price panel with the graphic positioned on the right-hand side.