Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

实现一个五点骰子 #392

Open
DiF1202 opened this issue Jan 15, 2023 · 0 comments
Open

实现一个五点骰子 #392

DiF1202 opened this issue Jan 15, 2023 · 0 comments

Comments

@DiF1202
Copy link
Contributor

DiF1202 commented Jan 15, 2023

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .outerBox {
            width: 100px;
            height: 100px;
            border: 1px solid #000;
            padding: 12px;
            box-sizing: border-box;
        }

        .innerBox {
            height: 76px;
            width: 76px;
            display: flex;
            flex-direction: column;
        }

        .side-rowbox {
            flex: 1;
            display: flex;
            justify-content: space-between;
        }

        .center-rowbox {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .circle {
            height: 20px;
            width: 20px;
            background-color: black;
            border-radius: 50%;
        }
    </style>
</head>

<body>
    <div class="outerBox">
        <div class="innerBox">
            <div class="side-rowbox">
                <div class="circle"></div>
                <div class="circle"></div>
            </div>
            <div class="center-rowbox">
                <div class="circle"></div>
            </div>
            <div class="side-rowbox">
                <div class="circle"></div>
                <div class="circle"></div>
            </div>
        </div>
    </div>
</body>

</html>


<!-- 来自拼多多面试真题 -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant