부트캠프교육중/CSS

[CSS] 계산기만들기

뭉지야 2023. 8. 17. 15:58
728x90
<div class="calculator"></div>
.calculator {
  width: 350px;
  height: 500px;
  border: 1px solid blue;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid red;
  height: 100vh;
}
728x90