Plunker Link: https://plnkr.co/edit/kC9SPK2e7iy5OYhKpwOO?p=preview
<html>
<head>
<link data-require="bootstrap@*" data-semver="4.1.3" rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" />
<script data-require="bootstrap@*" data-semver="4.1.3" src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body>
<div class="m-2 ml-4" style="color: whitesmoke;">
<div class="row text-justify">
<div class="container">
<div class="text-center row ml-2">
<h1>About me</h1>
</div>
<article class="row single-post no-gutters">
<div class="col">
<div class="image-wrapper float-right pr-3">
<img src="https://via.placeholder.com/1000" style="width:50%; margin-left: 25px; margin-right: -10px;" />
</div>
<div class="single-post-content-wrapper" style="text-align-last:right; padding-top: 5px;">
Custom text goes here....
</div>
</div>
</article>
</div>
</div>
</div>
</body>
</html>
At line 21, an image is loaded and wraps as intended when set to a specific pixel distance. How can this be adjusted to be responsive when using percentage values instead of fixed pixels?
Edit: I am attempting to achieve this responsiveness within Plunker on this page, seeking assistance on how to accomplish this...
Update: Using view-width instead of percentage seems to achieve the desired result, although it may limit the component to the page rather than its parent container...