Is there a way to display the checkbox label before the actual checkbox without using the "for" attribute in the label tag? I need to maintain the specific combination of the checkbox and label elements and cannot use nested labels or place other HTML elements before them. Any suggestions would be greatly appreciated. Thank you.
<input type="checkbox" id="chk1" />
<label for="chk1">I agree</label>