如何水平显示“div”?

这个问题在这里已经有了答案:

  • CSS - 使divs水平对齐7个答案

  • 你是这个意思?

    #loginContent,
    #signupContent {
        float: left;
        width: 50%;
    }
    
    or
    
    #Content {
      text-align: center;
    }
    
    #loginContent,
    #signupContent {
        display: inline-block;
    }
    

    使用内联块小提琴:

    #loginContent, #signupContent {
    display: inline-block;
    

    }

    或者你可以使用浮动小提琴:

    #signupContent {
    float: right;
    

    }

    链接地址: http://www.djcxy.com/p/81467.html

    上一篇: How to display "divs" horizontally?

    下一篇: Unmask async exceptions in STM transaction