html - 自动调整 Angular 框的大小

标签 html css

我的页面上有一个页 footer 分,我想在右下角保留一个 Logo ,该 Logo 会随着页面大小的变化而调整大小。永远不要超过页面宽度的 30%,高度也不要超过 60px。我怎样才能做到这一点?

这是我正在使用的 CSS。

    #system_footer{
        position:fixed;
        left:0;
        bottom:0;
        width:100%;
        background-color: transparent;
        color:azure;
        text-align: center;
        font-size:8px;
        margin: auto;
    }

    #system_footer_center{
        position:fixed;
        left:0;
        bottom:0;
        width:100%;
        background-color: transparent;
        color:azure;
        text-align: center;
        font-size:8px;
        margin: auto;
    }
    #system_footer_right{
        background: rgb(170,213,255);
        background: linear-gradient(rgba(170,213,255,0.5) 8%, rgba(5,51,107,1) 29%, rgba(5,51,107,0.6362920168067228) 67%, rgba(170,213,255,1) 100%, rgba(5,51,107,1) 100%);

        padding:14px;
        float:right;
        max-width: 30%;
        text-align:right;

        border-radius: 10px 0px 0px 10px;
        border: 10px 0px 10px 10px ridge white;

        box-shadow: -5px -0px 3px 2px rgba(255,255,255,0.75);
    }

    #system_footer_left{
        background: rgb(170,213,255);
        background: linear-gradient(rgba(170,213,255,0.5) 8%, rgba(5,51,107,1) 29%, rgba(5,51,107,0.6362920168067228) 67%, rgba(170,213,255,1) 100%, rgba(5,51,107,1) 100%);

        padding:14px;
        float:left;
        max-width: 30%;
        text-align:left;

        border-radius: 0px 10px 10px 0px;
        border: 10px 10px 10px 10px ridge white;

        box-shadow: 5px 0px 3px 2px rgba(255,255,255,0.75);
    }

    .cny-logo-sm{
        width:auto;
        max-height:60px;
        object-fit: scale-down;
    }

@media screen and (min-width: 300px) {
    #system_footer_center {
        font-size: calc(8px + (14 - 8) *  ((100vw - 300px) / (1000 - 300)));
  }
}

这是页脚 HTML。

<div id="system_footer">

    <div id="system_footer_left"> <!-- Reserved for Future Use -->
        <img src="<?PHP echo SYS_URL;?>resources/logo/cny_logo_name_white_trans_sm.png"  alt="[Logo] CNY Logo2 Placeholder" class="cny-logo-sm" style="visibility: hidden" > 
    </div>  
    <div id="system_footer_right">
        <img src="<?PHP echo SYS_URL;?>resources/logo/cuny_logo_name_white_trans_sm.png"  alt="[Logo] CNY Main Logo" class="cny-logo-sm">
    </div>
    <div id="system_footer_center"><p>For technical support, please contact OTE </p></div>

</div>

(请注意,左页脚目前为 Logo TBD 保留并且仍在设计中...因此我们使用右 Angular 的隐藏版本以确保大小相等。 如前所述,目标是调整 Angular 落“错误”的大小不超过页面的 30%,同时调整 Logo 的大小。

最佳答案

尝试使用 flex,https://codepen.io/divijbhardwaj/pen/jjvWZK

    <div class="footer">
    <img src="https://imgcomfort.com/Userfiles/Upload/images/illustration- 
    geiranger.jpg" class="left-logo">

    <img src="https://imgcomfort.com/Userfiles/Upload/images/illustration- 
    geiranger.jpg" class="mid-logo">

    <img src="https://imgcomfort.com/Userfiles/Upload/images/illustration- 
    geiranger.jpg" class="right-logo">

    </div>

   .footer{
    width:100%;
    height:100px;
    background-color:lightgrey;
    display:flex;
    flex-direction:row;
    /*justify content:flex-end to move all to right*/
    justify-content:space-between;
    align-items:center;
     }
    .right-logo,.mid-logo,.left-logo{
    display:flex;
    max-height:60px;
    max-width:30%;
    border:1px solid black;
    }

关于html - 自动调整 Angular 框的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56902377/

相关文章:

javascript - 输入字段值属性不会更改,除非键入 ="hidden"

javascript - 使用 JavaScript 使背景图像在滚动时始终保持不变(加上其他查询)

javascript - 如何删除 javascript/jquery 中动态创建的元素?

html - 即使 parent 是相对的,也不能定位绝对 Div

html - 在 chrome 上选择删除边框/背景图像(mac)

html - 更改特定链接背景的颜色 - bootstrap

javascript - snackbar 验证 MDL - Javascript/Jquery

html - 使用 css 和 html 缩放背景图像

html - 灵活的缩略图溢出

javascript - 动画jquery onclick绝对位置移动