iOS 10.0.1 CSS Missing Semicolon

So we discovered that our site is not rendering it's css properly on iOS 10.0.1. When testing the device, it looks like the css is missing semicolons, more specifically, at the last css statement of each block.


Example:

.foo {
     color: blue;
     padding: 0;
     margin: 10
}


But on our end, css is fine with no missing semicolons. This is the case for every block. Is this a known bug that's been patched?


Thanks for your help!

Replies

The last line in a CSS block doesn't require a semi-colon, so the code should work just fine.


In de Styles bar on the right side of the inspector there is a dropdown called "Styles" at the top. There you can find an option to see "Styles - Computed" and you can see what styles are applied to any given object on your page. Please check there if the styles you want to apply there are not overwritten by other styles.


If you've gone through all these steps and it still doesn't work can you give some more information on your issue?