Hover to show two more button - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Button

Description

Hover to show two more button

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
#train1, #train2 {<!--   w ww .  j  av a  2 s  .  com-->
   display:none;
}

#button_group:hover>button {
   display:inline-block;
}
</style> 
 </head> 
 <body> 
  <div id="button_group"> 
   <button type="button" class="Button" id="trains">Lorem </button> 
   <br> 
   <button type="button" class="Button" id="train1">Lorem i</button> 
   <br> 
   <button type="button" class="Button" id="train2">Lorem i</button> 
   <br> 
  </div>  
 </body>
</html>

Related Tutorials