gpt4 book ai didi

html - CSS 多层标题

转载 作者:行者123 更新时间:2023-11-28 04:14:00 25 4
gpt4 key购买 nike

我正在尝试创建此 header :http://imgur.com/a/GNC7x我已经走到这一步了:http://imgur.com/a/N8M4F我不知道如何在单词后面左右放置水平线。这是我目前所拥有的 jsfiddle: https://jsfiddle.net/n2tst0b1/

HTML:

<div id=page-wrap>
<div class="usabackgroundheader">
USA
<div id='headerfront'>
<i class="fa fa-star star-color" aria-hidden="true"></i>
<i class="fa fa-star star-color" aria-hidden="true"></i>
Church Army USA
<i class="fa fa-star star-color" aria-hidden="true"></i>
<i class="fa fa-star star-color" aria-hidden="true"></i>
</div><!--end id headerfront-->
</div> <!--end class usabackgroundheader -->
</div><!--end div pagewrap -->

CSS:

.usabackgroundheader {
font-size: 90px;
color: #F3F1EF;
position: relative; }

#headerfront {
color: #25408F;
font-size: 18px;
line-height: 20px;
position: absolute;
top: 30%;
left: 38%;
text-align: center;
vertical-align: middle; }

#page-wrap {
width: 960px;
margin: 0 auto;
position: relative;
text-align: center; }

最佳答案

好的,我猜你想要这样的东西:

*,html,body{
margin: 0;
padding: 0;
}
body,html{
height: 100%;
font-family: robotoregular;
background-color: #e0e0e0;
}
.content{
background-color:white;
width:100%;
height:98%;
margin-top:2%;
position:relative;
}
.header-text{
position:absolute;
left:50%;
top:50%;
transform: translate(-50%,-50%);
opacity:0.1;
font-size:80px;
text-align:center;
}

.first-header{
border:2px solid #e0e0e0;
width:350px;
padding:3px;
position:absolute;
left:50%;
top:50%;
transform: translate(-50%,-50%);
border-radius:10px;

}
<div class="content">
<h1 class="header-text">
USA
</h1>
<div class="first-header">
<h2 style="text-align: center">
** Church army **
</h2>
<div class="line">
</div>
</div>
</div>

你可以玩玩颜色的风格,最后一行我会告诉你怎么做

在这个demo中你完成了,你还可以使用flex box,更加灵活

希望对您有所帮助。

关于html - CSS 多层标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42567820/

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