写一个HTML页面让他背景色为白色中间有一个像WINDOWS11的一个小窗口颜色为灰色不用实现放大关闭等按钮
以下是一个实现描述的HTML页面代码:
<!DOCTYPE html>
<html>
<head>
<title>Windows 11 Window</title>
<style>
body {
background-color: white;
}
.window {
width: 300px;
height: 200px;
background-color: grey;
margin: 100px auto;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="window">
<!-- 内容 -->
</div>
</body>
</html>
在上述代码中,body 的背景颜色设置为白色,.window 类定义了窗口的样式,包括宽度、高度、背景颜色、边距和边框半径。在 <div class="window"> 中可以添加窗口内容
原文地址: http://www.cveoy.top/t/topic/iFi2 著作权归作者所有。请勿转载和采集!