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? 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
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> <style> *{ margin: 0; padding: 0; } .container { min-width: 600px; } .left,.right { float: left; width: 200px; height: 500px; background: red; } .center{float: left; width: 100%;} .left{ margin-left: -100%; } .inner { margin: 0 200px;background: yellow; height: 500px;} .right { margin-left: -200px; } </style> </head> <body> <article class="container"> <div class="center"> <div class="inner">双飞翼布局</div> </div> <div class="left">左边</div> <div class="right">右边</div> </article> </body> </html>
参考
The text was updated successfully, but these errors were encountered:
No branches or pull requests
参考
The text was updated successfully, but these errors were encountered: