While designing a form, I encountered an issue with applying CSS to set the size of the label and aligning it to the right for a more polished appearance. Here is the snippet of code I used:
label{
width: 50%;
text-align: right;
}
Any suggestions on how to troubleshoot this and make it work as intended?