将元素宽度指定为像素百分比的方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将元素宽度指定为像素百分比的方法相关的知识,希望对你有一定的参考价值。

  1. /*
  2.  
  3. Based on Stu Nicols demo at http://www.cssplay.co.uk/boxes/outside.html
  4.  
  5. Set the percentage width on the out element and the extra pixels-based width extension on the inner using negative margins
  6.  
  7. */
  8.  
  9. .outside {
  10. position: relative;
  11. width: 25%;
  12. background: #9caf9c;
  13. color: #fff;
  14. margin: 1em auto;
  15. }
  16. .inside {
  17. display: block;
  18. position: relative;
  19. color: #000;
  20. margin: 0 -50px;
  21. background: #c4c4c4;
  22. color: #000;
  23. }
  24.  

以上是关于将元素宽度指定为像素百分比的方法的主要内容,如果未能解决你的问题,请参考以下文章

将元素高度/宽度设置为百分比和像素值的组合[重复]

如何获取html元素的宽度并将像素转换为百分比[关闭]

将像素转换为百分比

如何将最大宽度设置为百分比和像素?

在流体设计中将元素的宽度调整为其高度的百分比,反之亦然? [复制]

如何以百分比指定光滑网格的宽度?