I am looking for a work around to add some css styling into my html tag. I do not want to edit the css file because I am using the particular formatting only once.
This is what I have tried and did not work out. I think the format is not being overridden by the css file.
<p margin-right ="3px" class="nav navbar-text navbar-right">Signed in as: @User.Identity.Name!</p>
How can I get it right?
<p style="margin-right: 3px" ..., but you should avoid inline styles.