When an element is contained within a group element, the group element attributes override the attributes of its children. ``` <svg width="600" height="600" xmlns="http://www.w3.org/2000/svg"> <g fill="none"> <rect width="100" height="100" fill="orange" stroke="blue" stroke-width="20" /> </g> </svg> ``` Expected Rendering:  Actual Rendering: 