How to make CSS width to fill parent?

前端 未结 5 467
天命终不由人
天命终不由人 2020-12-13 11:32

I am sure this problem has been asked before but I cannot seem to find the answer.

I have the following markup:

5条回答
  •  庸人自扰
    2020-12-13 12:34

    almost there, just change outerWidth: 100%; to width: auto; (outerWidth is not a CSS property)

    alternatively, apply the following styles to bar:

    width: auto;
    display: block;
    

提交回复
热议问题