12345678910111213141516171819 |
- input{
- width: 200px;
- font-size: 25px;
- text-align: center;
- background-color: antiquewhite;
- }
- body{
- width: fit-content;
- display: flex;
- flex-direction: column;
- }
- #values{
- display: flex;
- justify-content: space-around;
- }
- p{
- background-color: antiquewhite;
- font-size: 20px;
- }
|