css – 边界上的Z-index

前端之家收集整理的这篇文章主要介绍了css – 边界上的Z-index前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我一直在寻找一种方法添加z-index到边框但似乎找不到一个所以我想我会在这里问.

假设我有父div的div.父有一个边框,我希望该边框与子div重叠,但我不希望父对象重叠.

解决方法

你不能用边框做到这一点.

有趣的是,你可以用大纲来做

  1. * {
  2. Box-sizing: border-Box;
  3. }
  4.  
  5. .parent {
  6. width: 200px;
  7. height: 200px;
  8. margin: 25px auto;
  9. position: relative;
  10. background: #bada55;
  11. border:12px solid #663399;
  12. outline: 12px solid red;
  13. padding:25px
  14. }
  15.  
  16. .child {
  17. width: 220px;
  18. height: 100px;
  19. background: lightblue;
  20. }
  1. <div class="parent">
  2. <div class="child"></div>
  3. </div>

其他选择

使用伪元素

1.带边框的伪元素

需要一些额外的变换才能轻推到位.

  1. * {
  2. Box-sizing: border-Box;
  3. }
  4. .parent {
  5. width: 200px;
  6. height: 200px;
  7. margin: 25px auto;
  8. position: relative;
  9. background: #bada55;
  10. padding: 25px;
  11. }
  12. .child {
  13. width: 220px;
  14. height: 100px;
  15. background: lightblue;
  16. }
  17. .absolute::after {
  18. content: '';
  19. position: absolute;
  20. top: 50%;
  21. left: 50%;
  22. transform: translate(-50%,-50%);
  23. width: 100%;
  24. height: 100%;
  25. border: 12px solid red;
  26. }
  1. <div class="parent absolute">
  2. <div class="child"></div>
  3. </div>

2.具有盒阴影的伪元素

  1. * {
  2. Box-sizing: border-Box;
  3. }
  4. .parent {
  5. width: 200px;
  6. height: 200px;
  7. margin: 25px auto;
  8. position: relative;
  9. background: #bada55;
  10. padding: 25px;
  11. }
  12. .child {
  13. width: 220px;
  14. height: 100px;
  15. background: lightblue;
  16. }
  17. .shadow::after {
  18. content: '';
  19. position: absolute;
  20. top: 0%;
  21. left: 0%;
  22. width: 100%;
  23. height: 100%;
  24. Box-shadow: 0 0 0 12px red;
  25. }
  1. <div class="parent shadow">
  2. <div class="child"></div>
  3. </div>

猜你在找的CSS相关文章