I am currently utilizing bootstrap to design an image radio button, and my goal is to position the radio button on the top right corner of the image. I've attempted absolute positioning without success, so it's likely that I'm overlooking something important.
Here is the link to my code on CodePen
div {
margin-left: 200px;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet"/>
<div class="custom-control custom-radio image-checkbox">
<input type="radio" class="custom-control-input myinput" id="ck2a" name="ck2">
<label class="custom-control-label" for="ck2a">
<img src="https://via.placeholder.com/350
C/O https://placeholder.com/" alt="#" class="img-fluid>
</label>
</div>