Pixel Border and Percentage width in Proportion

后端 未结 7 2072
误落风尘
误落风尘 2021-02-08 14:30

I think I might already know the answer to this one but I need a sanity check!

Say I have

#gridtest{
width:590px;
}

I could change the

7条回答
  •  没有蜡笔的小新
    2021-02-08 14:58

    In CSS3 you can also use the new box-sizing property to include the pixel and padding count into the width of the element:

    box-sizing: border-box;
    

提交回复
热议问题