Title: Custom CSS Editor Doesn&#039;t Like Flexbox
Last modified: August 22, 2016

---

# Custom CSS Editor Doesn't Like Flexbox

 *  Resolved [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/custom-css-editor-doesnt-like-flexbox/)
 * Regarding the Custom CSS option, if you try to save any [flexbox related properties](https://css-tricks.com/snippets/css/a-guide-to-flexbox/)
   in the CSS editor, they don’t save, most get stripped out. For example, entering
   this:
 *     ```
       /* Flexbox container */
       #content {
          display: -webkit-flex;
          display: flex;
          -webkit-flex-direction: column;
          flex-direction: column;
          -webkit-align-content: stretch;
          align-content: stretch;
       }
   
       article {
          order: 1;
       }
       #comments {
          order: 2;
       }
       #jp-relatedposts {
          order: 3;
       }
       #nav-below {
          order: 4;
       }
       ```
   
 * Turns into this once the stylesheet is saved:
 *     ```
       /* Flexbox container */
       #content {
          display: -webkit-flex;
          display: flex;
       }
   
       article {
       }
   
       #comments {
       }
   
       #jp-relatedposts {
       }
   
       #nav-below {
       }
       ```
   
 * Big pain in the butt. Why doesn’t the editor just allow you to enter whatever
   properties you want?
 * [https://wordpress.org/plugins/jetpack/](https://wordpress.org/plugins/jetpack/)

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [Ryan C.](https://wordpress.org/support/users/ryanc413/)
 * (@ryanc413)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/custom-css-editor-doesnt-like-flexbox/#post-5861886)
 * Thanks for the report! Our developers are aware of this issue, and we hope to
   get it resolved in a future release. You can follow along with our progress here:
   
   [https://github.com/Automattic/jetpack/issues/1534](https://github.com/Automattic/jetpack/issues/1534)
 * Please let me know if you have any other questions in the meantime!
 *  Thread Starter [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/custom-css-editor-doesnt-like-flexbox/#post-5861889)
 * Thanks! Hope it gets resolved.
 *  [Ryan C.](https://wordpress.org/support/users/ryanc413/)
 * (@ryanc413)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/custom-css-editor-doesnt-like-flexbox/#post-5861891)
 * You bet! I’d recommend keeping an eye on that GitHub Issue. And don’t hesitate
   to give me a shout if there’s anything else I can help with.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Custom CSS Editor Doesn't Like Flexbox’ is closed to new replies.

 * ![](https://ps.w.org/jetpack/assets/icon.svg?rev=2819237)
 * [Jetpack - WP Security, Backup, Speed, & Growth](https://wordpress.org/plugins/jetpack/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/jetpack/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/jetpack/)
 * [Active Topics](https://wordpress.org/support/plugin/jetpack/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/jetpack/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/jetpack/reviews/)

## Tags

 * [flexbox](https://wordpress.org/support/topic-tag/flexbox/)

 * 3 replies
 * 2 participants
 * Last reply from: [Ryan C.](https://wordpress.org/support/users/ryanc413/)
 * Last activity: [11 years, 2 months ago](https://wordpress.org/support/topic/custom-css-editor-doesnt-like-flexbox/#post-5861891)
 * Status: resolved