I have the below. The error class comes from here http://css.dzone.com/news/css-message-boxes-different-me
I added display: inline to the div so it wouldnt take up the whole row. However now instead of going onto the next row it stays on the same row and is drawn on top of links or the login form. How do i properly handle this? I dont know if i should add a <br>
(if that works) or change the property css.
<div class="login">
<form action="/login" method="Post"><div>
<input type="text" name="username">
<input type="password" name="password">
<input type="submit" value="Login">
</div></form></div>
<div class="error">Error back - Title</div><br>
</body>
</html>