3
<form method="post" id="contactForm" action="#">
        <fieldset>
            <legend>Newsletter Signup</legend>
            <p>To sign up for our fabulous campaign of useless information that you will never, ever read, please submit your email address here.</p>
            <label for="email" id="emailLabel">Email</label>
            <input type="text" id="email" />
            <input type="button" name="submit" value="Submit" id="submitButton"/>
        </fieldset>
    </form>

So i need the paragraph to be on three separate lines but it has to be done with CSS.

Remirlis
  • 87
  • 4

1 Answers1

1

If you only need it to be in 3 line but don't care where the lines break:

p{
  width: 300px;
}

But this won't allow you to specify exactly where in the sentence the line breaks.

Patrick Schaefer
  • 821
  • 10
  • 20