when i click the large button, the smaller div increases width to 300px. And the red line shows above the black dotted borders.
Is there a way that when I click, the black dotted border remains front, and red border on back? Here is fiddle
Thanks
|
when i click the large button, the Is there a way that when I click, the black dotted border remains front, and red border on back? Here is fiddle Thanks |
|||||||||||
|
|
Add position:relative & change z-index: http://jsfiddle.net/K4L5s/13/ |
|||||||||||||
|
|
What are you trying to accomplish? If you just want the div to fill the parent, set the width to 100%:
|
|||
|
|
|
You can accomplish this by giving your child element a negative |
|||||||
|
|
Add a |
|||
|
|
|
|||
|
|
|
Your question is a little hard to understand, but it sounds like you're looking for z-index. Unfortunately, you can't use z-index without also applying a position that allows it. This is what it sounds like you're looking for:
Just make sure you don't have a z-index on the parent. |
|||
|
|
|
depending on what browser(s) you're trying to support, you could set the max-width proprty of the smaller div. |
|||
|
|
|
You have a fixed width on the outer div, so it won't increase. The small div is overflowing. |
|||
|
|