gpt4 book ai didi

html - 让图像显示在与我的标题相同的行上

转载 作者:太空宇宙 更新时间:2023-11-04 12:34:51 28 4
gpt4 key购买 nike

我试图让我的页眉和图像完全对齐在同一行上,但我遇到了困难。谁能看出原因/提出修复建议?

<!DOCTYPE html>
<html>
<head>
<style>
#header img {
position: relative;
width: 75px;
height: 75px;
}
#header h1 {
color: white;
float: left;
background-color:#006890;
font: 75px arial, sans-serif;
}
</style>
</head>
<body>

<div id="header">
<h1>Header</h1>
<img src="2000px-Smiley.svg.png" alt="Smiley Face" >
</div>
</body>
</html>

最佳答案

这是因为 h1 默认边距,你明白吗?元素带有默认样式,您需要根据需要对其进行自定义,通常您需要从 h1 中删除 margin-top 但您也可以将其设置为 margin: 0 ; 如果您不需要 margin-bottom

#header h1
{
color: white;
float: left;
background-color:#006890;
font: 75px arial, sans-serif;
margin: 0;
}

示例:http://jsfiddle.net/L2e1rL6L/

关于html - 让图像显示在与我的标题相同的行上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27363249/

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