该部分计算器设置借鉴于网络 本人对部分代码进行修改优化 仅供参考

  1. body{
  2. background:#CDC673;
  3. }
  4. .open{
  5. margin-top: 50px;
  6. }
  7. #show input{
  8. width:511px;
  9. height:60px;
  10. text-align:right;
  11. font-size:30px;
  12. background-color: #fff;
  13. border:1px solid black;
  14. }
  15. input[type="button"]{
  16. width: 100px;
  17. height: 70px;
  18. font-size: 28px;
  19. }
  20. /*设置鼠标悬浮在按钮上的背景色*/
  21. input[type="button"]:hover{
  22. background: lightgray;
  23. }