div+Css布局实现空调遥控器代码

代码语言:html

所属分类:布局界面

代码描述:div+Css布局实现空调遥控器代码

代码标签: div Css 布局 空调 遥控器 代码

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>空调遥控器</title>
<style>
  body {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }

  .remote {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 200px;
  }

  .display {
    background-color: #333;
    border-radius: 5px;
    height: 50px;
    margin: 10px 0;
  }

  .buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .button {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
  }

  .button:hover {
    background-color: #e0e0e0;
  }

  .button-large {
    grid-column: span 2;
  }

  .brand {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }

  .model {
    text-align: cente.........完整代码请登录后点击上方下载按钮下载查看

网友评论0