gpt4 book ai didi

html - 在图像顶部居中文本

转载 作者:行者123 更新时间:2023-11-28 16:22:31 26 4
gpt4 key购买 nike

我正在制作一个网站,我需要将文本置于图像的中央。我已经在 CSS 代码中尝试了边距,但仍然无法正常工作。我使用图像作为我的文本的背景,因为它会简化我稍后添加的动画。如果作为背景的图像不起作用,我总能找到解决方法。我怎样才能做到这一点?我正在尝试的方法不起作用。

编辑:抱歉,我忘了包括我试图居中的文本是 .IOStext(在 CSS 中)。我正试图将它放在 Moon 的中间。

我的代码:

@font-face {
font-family: UDFont;
src: url(gomarice_gogono_cocoa_mochi.ttf);
}
body {
background-image: url(background.png);
background-repeat: no-repeat;
background-size: cover;
background-color: #101423;
min-width: 100%;
min-height: 100%;
font-family: 'UDFont', Impact, Helvetica, Arial, Sans-serif;
}
#header {
width: 50%;
margin: 100px auto;
}
#headerContent {
width: 300px;
margin: auto;
}
#mainTitle {
width: 100%;
margin: auto;
text-align: center;
}
.universeTitle, .devTitle {
font-size: 3em;
margin: auto;
text-align: center;
}
.universeTitle {
color: #74aeee;
}
.devTitle {
color: #f1ab3c;
}
.slogan {
color: #822E81;
text-align: center;
margin: 10px auto;
width: 100%;
}
#content {

}
#selectors {

}
#IOSselector {
margin: auto;
width: 300px;
height: 300px;
background-image: url(IOSMoon.png);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.IOStext {
text-align: center;
margin: auto;
margin-top: auto;
width: 100%;
height: 50px;
}
<!DOCTYPE html>
<html>
<head>
<title>Welcome! | Universe Dev</title>
<link rel="shortcut icon" type="image/png" href="icon.png"/>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div id="header">
<div id="headerContent">
<div class="mainTitle">
<span class="universeTitle">Universe </span><span class="devTitle">Dev</span>
</div>
<h3 class="slogan">Universal Development</h3>
</div>
</div>
<div id="content">
<div id="selectors">
<div id="IOSselector">
<h1 class="IOStext">IOS</h1>
</div>
<script src="script.js"></script>
</body>
</html>
<!-- END -->

最佳答案

你可以在你的“月亮”上使用 flex,然后让你的文本内联 block :

#IOSselector {
margin: auto;
width: 300px;
height: 300px;
background-image: url(http://via.placeholder.com/300x300);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
display:flex;
justify-content: center;
align-items: center;
}

.IOStext {
margin: auto;
margin-top: auto;
display:inline-block;
}
<div id="IOSselector">
<h1 class="IOStext">IOS</h1>
</div>

关于html - 在图像顶部居中文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49517222/

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