容器和图像合并

问题描述

我需要将图像背景颜色与我创建的与图像背景颜色相同的块合并。他们应该位于网站的中心,并提供一些有关我的一些社交媒体的信息,但是这没有发生。我该怎么办?

  <img src="Images/Test.png" Id="Me" width=500px height=250px>
    
    <div id="main" >
       
        <h1>Lucas Cassimiro<br>Sena Colombo</h1>
       
<!-- ICONS-->
        <div class="icons">

        <a href="https://github.com/lucascassimirosena">
            <img src="Images/github-logo.png" alt="GitHub Icon" width=35px height=35px>
        </a>

        <a href="https://twitter.com/LucasCassimiroS">
            <img src="Images/twitter.png" alt="Twitter Icon" width=35px height=35px>
        </a>

        <a href="https://www.linkedin.com/in/lucas-cassimiro/">
            <img src="Images/linkedin.png" alt="Linkedin Icon" width=35px height=35px>
        </a>

        <a href="https://www.instagram.com/senawebcreations/">
            <img src="Images/instagram.png" alt="Instagram Icon" width=35px height=35px>
        </a>
        </div>
    </div>

  


<!-- CSS -->

body{
    background-color: #4F4F4F;
}


#main{
    margin-left:5px;
    margin-top: 5px;

    display: inline-block;
    background-color: #363636;
    width: 500px;
    height:300px;
    border-style: none;
    border-radius: 10px;


    position: relative;
    left: 500px;
    top: 80px;
}

#Me{
    
    display: inline-block;
    position: relative;
    margin-top: 5px;
}



.icons{
    margin-left: 15px;
}

This is the code

谢谢

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...