We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
HTML 结构:
<div class="wrapper"> <div class="content"></div> </div>
CSS结构:
.wrapper { position: relative; width: 500px; height: 500px; border: 1px solid red; } .content{ position: absolute; width: 200px; height: 200px; /*top、bottom、left 和 right 均设置为 0*/ top: 0; bottom: 0; left: 0; right: 0; /*margin 设置为 auto*/ margin:auto; border: 1px solid green; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
HTML 结构:
CSS结构:
The text was updated successfully, but these errors were encountered: