【发布时间】:2021-07-20 07:23:21
【问题描述】:
抱歉,我知道这是一个非常基本的问题,但我不知道如何将文本放在垂直居中的图像旁边。我已经搜索了如何做到这一点,并尝试了几种不同的方法,但我似乎无法找到一种有效的方法。我在想也许我犯了一个错误,我一直在我的代码中忽略。我很新,只是想看看我能应用我学到的东西。谢谢,这是我的代码。
html, body {
margin: 0px;
padding:0px;
width: 100%;
height: 100%;
overflow-x: hidden;
}
body {
background-image: url("https://cdn.pixabay.com/photo/2015/12/03/08/50/paper-1074131_1280.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
height: 100%;
opacity: 75%;
}
.header {
display: flex;
align-items: center;
justify-content: center;
}
.image {
flex-basis: 40%;
height: 20px;
width:35px;
vertical-align: middle;
}
.webtitle {
font-size: 30px;
padding-left: 5px;
vertical-align: middle;
font-weight: bold;
}
<!DOCTYPE html>
<html>
<head>
<title>Home - Historically Speaking</title>
<link href="D:\Programming\HTML\First Website\syle1.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div class="Header">
<div class="Logo">
<img src="https://i.imgur.com/Cm5P5vP.jpeg" width="250" height="200" align="left"/>
</div>
<div class="webtitle">
<p> Historically Speaking </p>
</div>
</div>
</body>
</html>
【问题讨论】:
-
不要用大写字母写类,正确的标题到标题:) 完成
-
嗨,谢谢你的工作:)
标签: html css flexbox alignment