Right align position of a button
asp.net-mvc, html
Solution
Try placing it in a `<div>` with `style="text-align: right; width: 100%;"`
Problem
ATM my button appears at the top left of the page. I want to change it to top right. I've added the text align., to the tag and the button..but makes no difference....any ideas? ``` <a style="text-align:right" href='@Url.Action("Index", "Route", new { id = Model.ID })' class="align:right;"> <button style='text-align:right'>Print Preview</button> </a> ``` thanks