1. 程式人生 > >如何實現按鈕水平居中

如何實現按鈕水平居中

方式一:

 <div style="text-align:center">
   <button>按鈕居中</button>                     
 </div>

方式二:

<div>   
   <button  style="display:block;margin:0 auto">按鈕居中</button>                      
</div>