CSS shorthand for positioning

前端 未结 5 1349
小鲜肉
小鲜肉 2020-12-05 17:17

There are any shorthand for top right bottom left or for width and height ?

I have a lo

5条回答
  •  甜味超标
    2020-12-05 17:24

    The answer is no as they are different properties so can not be combined. You can however consolidate your css a little bit rather than repeating certain properties, e.g:

    #topDiv,
    #centerDiv,
    #consoleDiv {
        position:absolute;
        left:0;
        right:0;
    }
    #topDiv {
        top:0;
        height:100px;
    }
    #centerDiv {
        top:100px;
        bottom:120px;
    }
    #consoleDiv {
        bottom:0;
        height:120px;
    }
    

提交回复
热议问题