See here:
I can't just add the border to the child element, it needs to be added to the parent (.dc-slick) - Is there any way to fix this? Z-index does not seem to help.
Thanks.
|
See here: I can't just add the border to the child element, it needs to be added to the parent (.dc-slick) - Is there any way to fix this? Z-index does not seem to help. Thanks. |
|||
|
|
|
There are 2 ways of doing it. 1) Child element takes the same size as not-transformed parent element. Then background you should cast on parent element
2) You should scale child approximately in same way as parent.
|
|||
|
|
|
The child div will inherit its parent's z-index no matter what you use. The problem here is mismatching border-radiuses. Use the same border radius on each element, otherwise you will get this overlap.
|
|||||||||||||
|
|
You should have the background color and the border on the same element, so move the
Updated JSFidle: http://jsfiddle.net/RxyRV/ |
|||
|
|