html – 按比例增加/减少包装器

前端之家收集整理的这篇文章主要介绍了html – 按比例增加/减少包装器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

demo

HTML …

三网融合

img{
    background-color: red;
    display: block;
    border: 2px solid white;
}

我尝试过的:

#main table{
    width: 200px;
    display: table;
    table-layout: fixed;
}

demo

What I want is here:

原始尺寸:

当我重新调整主要大小时:

最佳答案
使用缩放属性,例如:

#main table{
    width: 300px;
    display: table;
    table-layout: fixed;
    zoom: 0.4;    
 }
原文链接:https://www.f2er.com/html/425991.html

猜你在找的HTML相关文章