Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community!
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialJames Moran
7,271 PointsAlign button of form to bottom of page
Is there any way to position this button to the bottom of the page? But if there is content going past the bottom of the page, position the button to the bottom of that content?
Thanks!
<body>
<div id="create-advert" class="container">
<form id="create-advert-form" action="" method="POST">
<fieldset>...</fieldset>
<fieldset>...</fieldset>
<fieldset>...</fieldset>
<div class="buttons">
<button id="next-button" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" type="button">Continue</button>
</div>
</form>
</div>
</body>
.buttons {
flex-direction: row;
}
.mdl-button {
width: 100%;
height: 40px;
margin: 20px 15px 20px 0;
}
1 Answer

Jennifer Nordell
Treehouse TeacherTry setting the absolute position and set the top property to 100%. See if that will work.