问答详情
源自:13-6 万事无绝对 -层模型之绝对定位

css的绝对定位

怎么设置右上角??或者说,右下角,左下角

提问者:你好小奥 2017-03-26 16:07

个回答

  • 慕神6115920
    2017-09-07 16:13:06

    右上角——

             position:absolute;
             right:0px;

    右下角——

            position:absolute;
            right:0px;
            bottom:0px;

    左下角——

            position:absolute;
            left:0px;
            bottom:0px;

  • 慕粉1858559608
    2017-03-27 18:51:37

    right:0px;

    bottom:0px;

    不就右下角了么


  • qq_忧蓝天空_0
    2017-03-26 17:23:34

    不然它会以body为父集来定位

  • qq_忧蓝天空_0
    2017-03-26 17:22:24

    在div的父集加这个 position:relative;相对定位

  • qq_忧蓝天空_0
    2017-03-26 16:43:40

    发你的代码来看看

  • qq_忧蓝天空_0
    2017-03-26 16:28:53

          position:absolute;
          left:201px;
         bottom:0;
        加上这个试试!

  • 慕粉1017338238
    2017-03-26 16:23:39

    h1{

          text-align:top right corner

    }

    <h1>内容</h1>