HTML CSS examples for CSS Form:input button layout
Floated buttons
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> .fbutton {<!-- ww w . j ava2 s .c o m--> display: block; float: left; width: 150px; background: #3C0; line-height: 60px; border-radius: 10px 10px 10px 10px; text-align: center; margin-right: 20px; color: #fff; font-weight: bold; } </style> </head> <body> <a class="fbutton">Our review</a> <a class="fbutton">All Features</a> <a class="fbutton">Free Version</a> <a class="fbutton">Full version</a> </body> </html>