html 背景图铺满屏幕的方法

html 背景图铺满屏幕的方法

  大家好,我是亓官劼(qí guān jié ),在【亓官劼】公众号、CSDN、GitHub、B站、华为开发者论坛等平台分享一些技术博文,主要包括前端开发、python后端开发、小程序开发、数据结构与算法、docker、Linux常用运维、NLP等相关技术博文,时光荏苒,未来可期,加油~

.index_content{ 
    padding: 0;
    width: 100vw;
    height: 100vh;
    color: #c6c6c6;
    background-size:cover;
    object-fit:cover;
    background-repeat:no-repeat;
    background-position:50%;
    position:absolute;
    background-image: url("/static/img/your_img.jpeg");
}
    原文作者:亓官劼
    原文地址: https://blog.csdn.net/qq_43422111/article/details/123711528
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞