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

CSS Grid layout oopsie on chess.com #3469

Open
awesomekling opened this issue Feb 5, 2025 · 0 comments
Open

CSS Grid layout oopsie on chess.com #3469

awesomekling opened this issue Feb 5, 2025 · 0 comments
Labels
css grid has repro We have a way to reproduce this bug. reduction of web content Issue has a simplified reduction based on real-world web content. web compatibility

Comments

@awesomekling
Copy link
Member

The chess board doesn't show up at https://chess.com/play/computer

Here's a simplified reduction of the grid layout on that page:

<!doctype html><style>
    * { 
        outline: 1px solid black;
    }   
    body {
        display: grid;
        grid-template-columns: min-content;
    }   
    .main {
        display: flex;
        margin: 0px auto;
        width: min-content;
    }   
    .player {
        width: 100px;
    }   
</style><body><div class="main"><div class="player">whf
@awesomekling awesomekling added css grid has repro We have a way to reproduce this bug. reduction of web content Issue has a simplified reduction based on real-world web content. web compatibility labels Feb 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
css grid has repro We have a way to reproduce this bug. reduction of web content Issue has a simplified reduction based on real-world web content. web compatibility
Projects
None yet
Development

No branches or pull requests

1 participant