CSS: Width in percentage and Borders

前端 未结 4 779
孤街浪徒
孤街浪徒 2020-11-22 02:26

I\'ve defined widths of the containers in percentage. I\'d like to add a border (3px on right side of a width), since container width is in % while the border width is in px

4条回答
  •  轮回少年
    2020-11-22 02:59

    Just change px to vw like

    border-width: 10px;
    

    to

    border-width: 10vw;
    

    Its do whats percentage do....

提交回复
热议问题