If the property id (HTML) matches styling defined in Umbraco it can cause the property editor to look really weird.

I am seeing this issue on Umbraco version: Umbraco 8.8.0
I expect the Add button to appear normal and not collide with Backoffice styling.

Add button is all over the place due to the CSS that has been applied.

@hartviglarsen that's far from ideal... Just goes to highlight why CSS + element IDs is a bad idea 馃槈
I have a fix for your example, but there are other cases where CSS is referencing IDs which should be refactored #navigation is the most likely one to cause this collision, other IDs are less likely to be used as property aliases. Less likely, but not never-likely.
What is the reasoning behind having an id on those elements anyway? Shouldn't it at least be made up of different parts like #umb-property-1131-navigation (with 1131 being the property db id), to make sure id's don't get duplicated?
@skttl good point - I don't know why the id would be there, I don't think it would be used by anything internally... @nielslyngsoe any insights?
@nathanwoulfe I actually don't know, but from what I know it not being used. It's properly legacy, but never the less we need to be aware if extensions use this for injection.
We defiantly have a problem with these IDs as they are not unique, the ones that can occur multiple times should be made unique.
Most helpful comment
@hartviglarsen that's far from ideal... Just goes to highlight why CSS + element IDs is a bad idea 馃槈
I have a fix for your example, but there are other cases where CSS is referencing IDs which should be refactored
#navigationis the most likely one to cause this collision, other IDs are less likely to be used as property aliases. Less likely, but not never-likely.