Just starting out with CSS and I recently made some modifications to existing code:
.feedback_h1 {
width: 100%;
float: left;
margin: 0px;
font-family: Arial;
font-size: 12px;
font-width: 400;
color: #000000;
margin-bottom: 15px;
}
<div Class="feedback_h1">
We will use only personal information. Our <a href="https://example.com" target="_blank">privacy
policy</a> agreed?
</div>
The current output is:
We will use only personal information. Our
privacy policy
agreed?
However, I would like the result to be on a single line:
We will use only personal information. Our privacy policy agreed?
I believe right alignment might help (left alignment works fine) OR Is there a specific CSS attribute I should add to achieve this one-line result?
In VS 2013, is there a designer view available to align cshtml pages?