在我的网站上,我有一些文字包含在我的图像旁边。我有两个父容器对齐到页面顶部,但文本不遵循。你可以帮助文本与图像一致,就像在导航栏中一样。
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>
答案 0 :(得分:1)
在@Mostafa Baezid的帮助下,我通过添加
解决了这个问题body {
margin: 0;
}
h1 {
margin:0
}
到我的CSS来缩小差距。