How do I add 1px border to a div whose width is a percentage?

前端 未结 3 636
臣服心动
臣服心动 2020-12-20 15:53

I have this jsfiddle http://jsfiddle.net/tara_irvine/DZLTJ/1/ which explains my problem.

I want the menu items along the top to be 20% of the window but I also want

3条回答
  •  轮回少年
    2020-12-20 16:06

    For this you can use css box-sizing for this:

    like this:

    #nav_1232938 li, .row {
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
                box-sizing: border-box;
    }
    

提交回复
热议问题