<!DOCTYPE html>
<html>
<head>
<title>简易计算器</title>
<style>
.container {
width: 300px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
text-align: center;
background-color: whitesmoke;
}
.result {
margin-top: 10px;
padding: 10px;
border: 1px solid #ccc;
}
.button {
margin-top: 10px;
width: 22%;
padding: 10px;
}
#display {
width: 90%;
height: 50px;
font-size: 30px;
line-height: 50px;
}
</style>
</head>
<body>
<div class="container">
<h2>计算器</h2>
<input type="text" id="display" readonly>
<!-- <div class="result" id=