Looking for assistance with aligning text with images that are wrapped by text and aligned left or right within the .html file. The desired effect is to have margin space to the right when the image is on the left (margin: 0 1rem 0 0), and vice versa, to have margin space to the left when the image is on the right (margin: 0 0 0 1rem). See the specified styling below:
figure[style="float: left;"] {
margin-right: 2rem;
}
figure[style="float: right;"] {
margin-left: 2rem;
}
If anyone can provide guidance or help with this, it would be greatly appreciated!