A simple question, and, undoubtedly, an easy solution. I just have a lot of problems with the search, despite the fact that you have been looking for SO and Google for a while.
All I want to do is take a piece of text “I'm interested in an extended listing or premium profile (a member of our team will respond promptly to further information)” and align it to the right (with text aligning to the left), but not wrap around it , like now.
Here is my JSFiddle
Code (using PureCSS for styling):
<form class="pure-form pure-form-aligned"> <fieldset> <div class="pure-control-group"> <label for="name">Product Name</label> <input id="name" type="text" placeholder="Username"> </div> <div class="pure-control-group"> <label for="password">Contact Name</label> <input id="password" type="text" placeholder="Password"> </div> <div class="pure-control-group"> <label for="email">Contact Email</label> <input id="email" type="email" placeholder="Email Address"> </div> <div class="pure-control-group"> <label for="foo">Website</label> <input id="foo" type="text" placeholder="Enter something here..."> </div> <div class="pure-control-group"> <label for="foo">Description:</label> <textarea id="description" type="text" placeholder="Enter description here..."></textarea> </div> <div class="pure-controls"> <label for="cb" class="pure-checkbox"> <input id="cb" type="checkbox"> I'm interested in an enhanced listing or premium profile, (a member of our team will respond promptly with further information) </label> <button type="submit" class="pure-button pure-button-primary">Submit</button> </div> </fieldset> </form>
Any help would be greatly appreciated. Thank you
source share