HTML CSS examples for CSS Form:input button layout
Button with full width of the page inline with the other button
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .btn3 {<!-- w w w. ja v a2 s .com--> width: 80%; } </style> </head> <body> <div class="banner"> <button class="btn1">First button</button> <button class="btn2">Second button</button> <button class="btn3">Third button</button> </div> </body> </html>