HTML CSS examples for CSS Form:input button style
Search button tabindex accessibility
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <!--from w ww . ja v a2s .com--> <body> <form action="search.php" method="get" style="display:table; width:100%;"> <div style="display:table-cell; width: 100%;"> <input type="text" name="term" style="width: 100%;"> </div> <input type="submit" name="search" value="Go" style="display:table-cell;"> </form> </body> </html>