Search button tabindex accessibility - HTML CSS CSS Form

HTML CSS examples for CSS Form:input button style

Description

Search button tabindex accessibility

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials