how to make calculator using Html, CSS and JavaScript

Опубликовано: 26 Март 2026
на канале: TSN soft
2,832
68

how to make calculator using Html, CSS and JavaScript


css code


{
margin: 0;
padding: 0;
}


.calborder {
margin: auto;
background: #343ba6;
width:300px;
border-radius: 5px;

}

.display input{

width: 94%;
margin: 7px;
height: 25px;
text-align:right;
font-size:25px;
font-family:Times New Roman;


}

ul {
padding-left: 8px;
list-style-type: none;
overflow: auto;

}
li {
float: left;
}


.calbtn {
margin-top: 5px;
}

.calbtn button{

width:71px;
background-color: #343ba6;

height: 55px;
font-size: 30px;
color: azure;
}