I am having trouble aligning some text that is enclosed in a span, which is nested inside a p element. Despite my efforts, it doesn't seem to be working as expected.
<p>This line has no alignment.<br /><span class="new">This is right aligned</span></p>
Here is the CSS code I am using-
.new {text-align: right;}
Can anyone help me identify what is incorrect in my CSS code?