Home > Enterprise >  Flexboxes in GitHub README.md for profile
Flexboxes in GitHub README.md for profile

Time:10-13

When I preview my file in Visual Studio Code it prints out correctly, but when I go to GitHub and look at the presentation, it moves the 2 columns to the same row and the styles section of the Markdown just displays it in plain-text.

You can see the changes itself on my profile: https://github.com/sfgoodwiniii

And the README repo: https://github.com/sfgoodwiniii/sfgoodwiniii

CodePudding user response:

Unfortunately you cannot use CSS in GitHub markdown as it is a part of the sanitization process.

The HTML is sanitized, aggressively removing things that could harm you and your kin—such as script tags, inline-styles, and class or id attributes.

Source

  • Related