文本右侧的文本未对齐到页面顶部

时间:2017-02-04 16:45:47

标签: html css html5 css3

在我的网站上,我有一些文字包含在我的图像旁边。我有两个父容器对齐到页面顶部,但文本不遵循。你可以帮助文本与图像一致,就像在导航栏中一样。

body {
    padding: 0px;
}
#icon-top-corner-wrapper {
    width: 35px;
    height: 35px;
    background-color: lightBlue;
    padding: 5px;
    float: left;
}
#icon-top-corner {
    width: 100%;
}
#toolbar {
    margin: 0px;
    padding: 5px;
}
<div id="toolbar">
    <div id="icon-top-corner-wrapper">
        <img alt="Digytool Icon" id="icon-top-corner" src="https://system.digytool.com/img/icon/digytool.png" title="Digytool">
    </div>
    
    <div>
        <h1>
            Digytool
        </h1>
    </div>
</div>

1 个答案:

答案 0 :(得分:1)

在@Mostafa Baezid的帮助下,我通过添加

解决了这个问题
body {
    margin: 0;
} 
h1 {
    margin:0
}

到我的CSS来缩小差距。

相关问题