代码之家  ›  专栏  ›  技术社区  ›  Llyle bonjorno

如何使绝对位置div在x而不是y上的相对div溢出中

  •  1
  • Llyle bonjorno  · 技术社区  · 14 年前

    我有一个绝对的位置 div 处于相对位置 . 我想要内在的 分区 在x轴上溢出,但不在y轴上溢出。

    <html>
    <head>
    <style>
      #wrapper {
        width: 100px;
        height: 100px;
        background-color: blue;
        position: relative;
        overflow-y: hidden;
        overflow-x: visible;
      }
    
      #wrapper div {
        width: 50px;
        height: 50px;
        position: absolute;
        right: -25px;
        bottom: -25px;
        background-color: red;
      }
    </style>
    </head>
    <body>
    <div id="wrapper">
    <div></div>
    </div>
    </body>
    </html>
    

    我觉得我肯定做错了什么。有办法满足我的要求吗?

    2 回复  |  直到 14 年前
        1
  •  1
  •   Sarfraz    14 年前

    我想让内部div溢出 y轴,但不在x轴上。

      #wrapper div {
        ............
        overflow: auto;
        overflow-y: scroll;
        overflow-x: hidden;
      }
    

    你的父母:

      #wrapper {
        ............
        overflow: auto;
      }
    
        2
  •  1
  •   Llyle bonjorno    13 年前

    考虑到当时的html4+css实现,我试图做的是不可能的。