gpt4 book ai didi

html - 当在其周围添加图像时,顶部边框空间的文本表现不同

转载 作者:太空宇宙 更新时间:2023-11-03 22:46:30 25 4
gpt4 key购买 nike

这是我的html代码

<html>
<head>
</head>
<link href="https://fonts.googleapis.com/css?family=Roboto:300i,400" rel="stylesheet">
<style>
body {
font-family: 'Roboto', sans-serif;
font-size: 1.2em;
}

#head {
height: 50px;;
width: 100%;
background-color: #000000;
color: #ffff00;;
}
</style>
<body>
<div id="head">
logout
<img src="/static/img/logout.png"/>
logout
</div>
</body>
</html>

在我添加图片之前,上边框的高度是0
enter image description here
添加图像后,顶部边框有空格
enter image description here

为什么会发生这种情况,我怎样才能使添加后的图像文本在顶部边框没有空间。我使用了 margin 和 padding 但没有用。

最佳答案

你需要垂直对齐图像,

在你的情况下

#head img {vertical-align:top;}

body {
font-family: 'Roboto', sans-serif;
font-size: 1.2em;
}
#head {
height: 50px;
width: 100%;
background-color: #000000;
color: #ffff00;
font-size: 12px;
}
#head img {
vertical-align: top;
}
<div id="head">
logout
<img src="https://placeholdit.imgix.net/~text?txtsize=28&txt=300%C3%97300&w=300&h=300" width=30/>logout
</div>

关于html - 当在其周围添加图像时,顶部边框空间的文本表现不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41692754/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com