<html>
<head>
<style>
#div1 {
position: absolute;
left: 50px;
width: calc(100% - 100px);
border: 1px solid black;
background-color: yellow;
padding: 5px;
text-align: center;
}
</style>
</head>
<body>
<h1>calc() 函数</h1>
<p>创建一个在整个窗口范围内延伸的 div,div 的每侧和窗口边缘之间的距离为 50px:</p>
<div id="div1">Some text...</div>
</body>
</html>