Putting a button in center - HTML CSS CSS Form

HTML CSS examples for CSS Form:input button layout

Description

Putting a button in center

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

a.header-button {
   display: block;
   background-color:#
}
a.header-button:hover {
   color: #e8ddc8;
   text-decoration: underline;<!--  w w w  .ja  v a2 s. com-->
}
.header-button {
   background-color:#031634;
   color:#e8ddc8;
   padding: 10px 5px 10px 5px;
   border-radius: 5px;
   text-align:center;
   position:absolute;
   top:10;
   left:50%;
   width:100px;
   height:30px;
   margin:0px 0 0 -50px;
}
.middle{
   position:absolute;
   top:50%;
   left:50%;
   width:100px;
   height:30px;
   margin:-15px 0 0 -50px;
}


      </style> 
 </head> 
 <body> 
  <a href="#" class="header-button">View Products</a> 
  <a href="#" class="header-button middle">View Products</a>  
 </body>
</html>

Related Tutorials